Click or drag to resize

NMathFunctionsWeightedVariance(IDFColumn, IDFColumn) Method

Calculates the weighted variance of the given data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static double WeightedVariance(
	IDFColumn data,
	IDFColumn weights
)

Parameters

data  IDFColumn
The data.
weights  IDFColumn
The weights.

Return Value

Double
The weighted variance.
Exceptions
ExceptionCondition
MismatchedSizeException Thrown if data and weights do not have the same length.
NMathFormatConvertException Thrown if data or weights are not numeric.
Remarks
If weights is an IDFIntColumn, the weights are interpreted as frequency counts, which in effect expand the data by these counts, so no normalization is performed. Otherwise, the weights are interpreted as sampling (reliability) weights and the weight values are normalized to sum to the length of the data column.
See Also