Returns a
Filter that selects all observations that do not deviate from the mean by more than the specified amount.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function ExcludeOutliers ( _
maximumDeviation As Double _
) As Filter |
| C++ |
|---|
public:
Filter^ ExcludeOutliers (
double maximumDeviation
) |
Parameters
- maximumDeviation (System.Double)
- The number of standard deviations of the maximum deviation.
Return Value
A
Filter that selects all observations that lie less than
maximumDeviation
standard deviations from the mean.
.