NormalDistribution.ZScore Method

Returns the z-score of a sample.

Definition

Namespace: Numerics.NET.Statistics.Distributions
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public double ZScore(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The normalized z-score of the sample.

Remarks

The z-score is the value of the sample relative to a standard normal distribution. A z-score measures the deviation of a sample from the mean in units of the standard deviation.

See Also