Generalized Esd Test Constructor
Definition
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Generalized | Constructs a new Generalized ESD test for multiple outliers. |
| Generalized | Constructs a new Generalized ESD test for multiple outliers. |
| Generalized | Constructs a new Generalized ESD test for multiple outliers. |
GeneralizedEsdTest
Constructs a new Generalized ESD test for multiple outliers.
public GeneralizedEsdTest()GeneralizedEsdTest(Vector<Double>, Int32)
Constructs a new Generalized ESD test for multiple outliers.
public GeneralizedEsdTest(
Vector<double> sample,
int numberOfOutliers
)Parameters
- sample Vector<Double>
- A vector.
- numberOfOutliers Int32
- The number of outliers to test for.
Exceptions
| ArgumentNullException | sample is null. |
| ArgumentOutOfRangeException | numberOfOutliers is less than 1 or greater than the length of sample. |
GeneralizedEsdTest(Vector<Double>, Int32, HypothesisType)
Constructs a new Generalized ESD test for multiple outliers.
public GeneralizedEsdTest(
Vector<double> sample,
int numberOfOutliers,
HypothesisType side
)Parameters
- sample Vector<Double>
- A vector.
- numberOfOutliers Int32
- The number of outliers to test for.
- side HypothesisType
- Specifies where to test for outliers.
Exceptions
| ArgumentNullException | sample is null. |
| ArgumentOutOfRangeException | numberOfOutliers is less than 1 or greater than the length of sample. |