Outliers GetOutlierCount Method (List Double , Double, Double)CleanCode C# Libraries v1.2.03 API
Gets the outlier count for a list.

Namespace: CleanCode.Math
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public static int GetOutlierCount(
	List<double> list,
	double mean,
	double stdDev
)

Parameters

list
Type: OnlineSystem.Collections.Generic List OnlineDouble 
The list.
mean
Type: OnlineSystem Double
The mean.
stdDev
Type: OnlineSystem Double
The STD dev.

Return Value

Count of outliers.
Remarks

This version is slightly more efficient if you already have the mean and standard deviation of the list. GetOutlierCount(List Double )
See Also