Calculates the skewness, a measure of the symmetry of the data, of the the elements in a data set using the given bias type. NaN values are excluded.

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

Syntax

C#
public static double NaNSkewness(
	double[] data,
	BiasType type
)
Visual Basic (Declaration)
Public Shared Function NaNSkewness ( _
	data As Double(), _
	type As BiasType _
) As Double
Visual C++
public:
static double NaNSkewness(
	array<double>^ data, 
	BiasType type
)

Parameters

data
Type: array< System..::.Double >[]()[]
An array of doubles.
type
Type: CenterSpace.NMath.Stats..::.BiasType
Bias type.

Return Value

Skewness.

See Also