Provides access to methods that create filters based on the values in a DateTimeVariable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Structure DateTimeFilters |
| C# |
|---|
public struct DateTimeFilters |
| C++ |
|---|
public value class DateTimeFilters |
Methods
| Icon | Type | Description |
|---|---|---|
| Between(DateTime, DateTime) |
Returns a Filter that selects all observations that lie between the specified values.
| |
| Between(DateTimeVariable, DateTimeVariable) |
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(DateTime) |
Returns a Filter that selects all observations equal to the specified value.
| |
| EqualTo(DateTime, TimeSpan) |
Returns a Filter that selects all observations equal to the specified value to within the specified tolerance.
| |
| EqualTo(DateTimeVariable) |
Returns a Filter that selects all observations equal to
the corresponding observation in another variable.
| |
| EqualTo(DateTimeVariable, TimeSpan) |
Returns a Filter that selects all observations that are equal to
the corresponding observation in another variable to within the specified tolerance.
| |
| Finalize() | ||
| Find(Predicate<(Of DateTime>)) |
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(DateTime) |
Returns a Filter that selects all observations greater than the specified value.
| |
| GreaterThan(DateTimeVariable) |
Returns a Filter that selects all observations greater than the corresponding observation in another variable.
| |
| GreaterThanOrEqualTo(DateTime) |
Returns a Filter that selects all observations greater than or equal to the specified value.
| |
| GreaterThanOrEqualTo(DateTimeVariable) |
Returns a Filter that selects all observations greater than or equal to
the corresponding observation in another variable.
| |
| LessThan(DateTime) |
Returns a Filter that selects all observations less than the specified value.
| |
| LessThan(DateTimeVariable) |
Returns a Filter that selects all observations less than the corresponding observation in another variable.
| |
| LessThanOrEqualTo(DateTime) |
Returns a Filter that selects all observations less than or equal to the specified value.
| |
| LessThanOrEqualTo(DateTimeVariable) |
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(DateTime, DateTime) |
Returns a Filter that selects all observations that do not lie between the specified values.
| |
| NotBetween(DateTimeVariable, DateTimeVariable) |
Returns a Filter that selects all observations that do not lie between the corresponding observations in
two other variables.
| |
| NotEqualTo(DateTime) |
Returns a Filter that selects all observations not equal to the specified value.
| |
| NotEqualTo(DateTime, TimeSpan) |
Returns a Filter that selects all observations not equal to the specified value to within the specified tolerance.
| |
| NotEqualTo(DateTimeVariable) |
Returns a Filter that selects all observations that are not equal to
the corresponding observation in another variable.
| |
| NotEqualTo(DateTimeVariable, TimeSpan) |
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.
| |
| ToString() | Returns the fully qualified type name of this instance. |