Provides access to methods that create filters based on the values in a NumericalVariable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Structure NumericalFilters |
| C# |
|---|
public struct NumericalFilters |
| C++ |
|---|
public value class NumericalFilters |
Methods
| Icon | Type | Description |
|---|---|---|
| Between(Double, Double) |
Returns a Filter that selects all observations that lie between the specified values.
| |
| Between(NumericalVariable, NumericalVariable) |
Returns a Filter that selects all observations between the corresponding observations in
two other variables.
| |
| Equals(Object) | Indicates whether this instance and a specified object are equal. | |
| EqualTo(Double) |
Returns a Filter that selects all observations equal to the specified value.
| |
| EqualTo(Double, Double) |
Returns a Filter that selects all observations equal to the specified value to within the specified tolerance.
| |
| EqualTo(NumericalVariable) |
Returns a Filter that selects all observations equal to
the corresponding observation in another variable.
| |
| EqualTo(NumericalVariable, Double) |
Returns a Filter that selects all observations that are equal to
the corresponding observation in another variable to within the specified tolerance.
| |
| ExcludeOutliers(Double) |
Returns a Filter that selects all observations that do not deviate from the mean by more than the specified amount.
| |
| Finalize() | ||
| Find(Predicate<(Of Double>)) |
Returns a Filter that selects all observations that match the specified Predicate<(Of T>).
| |
| GetHashCode() | Returns the hash code for this instance. | |
| GetType() | Gets the Type of the current instance. | |
| GreaterThan(Double) |
Returns a Filter that selects all observations greater than the specified value.
| |
| GreaterThan(NumericalVariable) |
Returns a Filter that selects all observations greater than the corresponding observation in another variable.
| |
| GreaterThanOrEqualTo(Double) |
Returns a Filter that selects all observations greater than or equal to the specified value.
| |
| GreaterThanOrEqualTo(NumericalVariable) |
Returns a Filter that selects all observations greater than or equal to
the corresponding observation in another variable.
| |
| LessThan(Double) |
Returns a Filter that selects all observations less than the specified value.
| |
| LessThan(NumericalVariable) |
Returns a Filter that selects all observations less than the corresponding observation in another variable.
| |
| LessThanOrEqualTo(Double) |
Returns a Filter that selects all observations less than or equal to the specified value.
| |
| LessThanOrEqualTo(NumericalVariable) |
Returns a Filter that selects all observations less than or equal to the corresponding observation in another variable.
| |
| MemberwiseClone() | Creates a shallow copy of the current Object. | |
| NotBetween(Double, Double) |
Returns a Filter that selects all observations that do not lie between the specified values.
| |
| NotBetween(NumericalVariable, NumericalVariable) |
Returns a Filter that selects all observations that do not lie between the corresponding observations in
two other variables.
| |
| NotEqualTo(Double) |
Returns a Filter that selects all observations not equal to the specified value.
| |
| NotEqualTo(Double, Double) |
Returns a Filter that selects all observations not equal to the specified value to within the specified tolerance.
| |
| NotEqualTo(NumericalVariable) |
Returns a Filter that selects all observations that are not equal to
the corresponding observation in another variable.
| |
| NotEqualTo(NumericalVariable, Double) |
Returns a Filter that selects all observations that are not equal to
the corresponding observation in another variable to within the specified tolerance.
| |
| NotMissing() |
Returns a Filter that selects all observations that are not missing.
| |
| NotNaN() | ||
| Outliers(Double) |
Returns a Filter that selects all observations that deviate from the mean by more than the specified amount.
| |
| ToString() | Returns the fully qualified type name of this instance. |