Calculates the biased skewness, a measure of the symmetry of the data, of the elements in a data set. NaN values are excluded.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static double NaNSkewness(
	DoubleVector data
)
Visual Basic (Declaration)
Public Shared Function NaNSkewness ( _
	data As DoubleVector _
) As Double
Visual C++
public:
static double NaNSkewness(
	DoubleVector^ data
)

Parameters

data
Type: CenterSpace.NMath.Core..::.DoubleVector
A vector.

Return Value

Skewness.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentException Thrown if data has a length of zero.

See Also