Returns a Filter that selects all observations that are not equal to the corresponding observation in another variable.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function NotEqualTo ( _
	variable As CategoricalVariable _
) As Filter
C#
public Filter NotEqualTo (
	CategoricalVariable variable
)
C++
public:
Filter^ NotEqualTo (
	CategoricalVariable^ variable
)

Parameters

variable (Extreme.Statistics.CategoricalVariable)
A CategoricalVariable of the same length as the current variable.

Return Value

A Filter that selects all observations not equal to the corresponding observation of variable.

Exceptions

ExceptionCondition
DimensionMismatchException The length of variable is not equal to the length of this instance.
ArgumentNullExceptionvariable is nullNothingnullptr.