![]() |
| サイトマップ | |
|
関数 x25
は、与えられた座標範囲の次式における x データの補間値を返します。オプションで Lowess スムージングを使用できます。
これは通常、S 字型関数でスムージングされたデータの最小値から最大値までの距離の 25% 位置の y 値に対する x 値を返すのに使用されます。
x25
(x range, y range, f)
引数 x range には x 変数を指定し、引数 y range には y 変数を指定します。範囲に含まれている欠損値またはテキスト文字列はすべて無視され、データポイントとして取り扱われません。引数 x range と y range は同じ大きさである必要があり、3つ以上の有効なデータポイントが必要になります。
引数 f は Lowess スムージング量を定義し、各回帰に使用されるデータポイントの小数に相当します。f は 0 以上 1 以下でなければなりません。すなわち 0 ≤ f ≤ 1 となります。f を省略すると、スムージングされません。
x={0,1,2}
、y={0,1,4}
のとき、
col(1)=x25(x,y)は、次式における x を 1.00 として列1に配置します。
The x25 function returns an interpolated value of the x data at:
in the ranges of coordinates provided, with optional Lowess smoothing. This is typically used to return the x value for the y value at 25% of the distance from the minimum to the maximum of smoothed data for sigmoidal shaped functions.
x25(x range, y range, f)
The x range argument specifies the x variable, and the y range argument specifies the y variable. Any missing value or text string contained within one of the ranges is ignored and will not be treated as a data point. x range and y range must have the same size, and the number of valid data points must be greater than or equal to 3.
The optional f argument defines the amount of Lowess smoothing, and corresponds to the fraction of data points used for each regression. f must be greater than or equal to 0 and less than or equal to 1. (0 ≤ f ≤ 1). If f is omitted, no smoothing is used.
col(1)=x25(x,y)places the x at