Stats.Population Skewness Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Population | Returns the population skewness of the elements of an array. |
Population | Returns the population skewness of the elements of an array. |
Population | Returns the population skewness of a sequence. |
Population | Returns the population skewness of the elements of a span. |
PopulationSkewness<T>(Vector<T>)
Returns the population skewness of the elements of an array.
public static double PopulationSkewness<T>(
this Vector<T> values
)
Parameters
- values Vector<T>
- A vector.
Type Parameters
- T
- The type of the elements of values.
Return Value
DoubleThe skewness of the elements of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |
PopulationSkewness<T>(T[], Boolean)
Returns the population skewness of the elements of an array.
public static double PopulationSkewness<T>(
this T[] values,
bool skipMissingValues = false
)
Parameters
- values T[]
- An array of values.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the calculation. The default is false.
Type Parameters
- T
- The type of the elements of values.
Return Value
DoubleThe skewness of the elements of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type T[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |
PopulationSkewness<T>(IEnumerable<T>, Boolean)
Returns the population skewness of a sequence.
public static double PopulationSkewness<T>(
IEnumerable<T> values,
bool skipMissingValues = false
)
Parameters
- values IEnumerable<T>
- A sequence of values.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the calculation. The default is false.
Type Parameters
- T
- The type of the elements of values.
Return Value
DoubleThe skewness of the elements of values.
Exceptions
Argument | values is null. |
PopulationSkewness<T>(ReadOnlySpan<T>, Boolean)
Returns the population skewness of the elements of a span.
public static double PopulationSkewness<T>(
this ReadOnlySpan<T> values,
bool skipMissingValues = false
)
Parameters
- values ReadOnlySpan<T>
- A span of values.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the calculation. The default is false.
Type Parameters
- T
- The type of the elements of values.
Return Value
DoubleThe skewness of the elements of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ReadOnlySpan<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Exceptions
Argument | values is null. |