Static member | Description |
|
|
Full Usage:
Statistics.MassDistribution(x, xmass, xlow, xhigh, y, ny)
Parameters:
IReadOnlyList<float>
-
xmass : IReadOnlyList<float>
-
xlow : float
-
xhigh : float
-
y : IVector<float>
-
ny : int
-
|
Adapted from the R-project (www.r-project.org), Version 2.72, file massdist.c
|
|
|
Full Usage:
Statistics.Mean(x, ignoreNaN)
Parameters:
IReadOnlyList<float>
ignoreNaN : bool
Returns: float
|
|
Full Usage:
Statistics.ProbabilityDensity(x, bw, bwSel, adjust, kernel, weights, width, widthSel, n, from, to, cut)
Parameters:
IReadOnlyList<float>
-
bw : float
-
bwSel : string
-
adjust : float
-
kernel : ConvolutionKernel
-
weights : IReadOnlyList<float>
-
width : float
-
widthSel : string
-
n : int
-
from : float
-
to : float
-
cut : float
-
Returns: ProbabilityDensityResult
|
Adapted from the R-project (www.r-project.org), Version 2.72, file density.R
|
Full Usage:
Statistics.Quantile(x, f)
Parameters:
IReadOnlyList<float>
-
Sorted array (in ascending order) of data. No check is made whether the array is sorted or contains missing data (NaNs).
f : float
-
The quantile [0,1].
Returns: float
The quantile value of the array of data.
|
The quantile value of x.
|
Full Usage:
Statistics.Quantile(x, f, n, stride, checkArray)
Parameters:
IReadOnlyList<float>
-
Sorted array (in ascending order) of data. No check is made whether the array is sorted or contains missing data (NaNs).
f : float
-
The quantile [0,1].
n : int
-
Number of values to test. Normally set to x.Length .
stride : int
-
Stride. Normally set to 1.
checkArray : bool
-
If true, checks the array for missing values and whether the array is sorted. An exception is thrown if the array contains missing values or is not sorted.
Returns: float
The quantile value of the array of data.
|
The quantile value of x.
|
|
|