ArrowStringDataFrameColumn.ElementwiseNotEquals Method

Definition

Overloads

ElementwiseNotEquals(DataFrameColumn)

Performs element-wise not-equals

ElementwiseNotEquals(String)

Returns a boolean column that is the result of an elementwise not-equal comparison of each value in the column with value

ElementwiseNotEquals<T>(T)

Performs an element-wise not-equals on each value in the column

ElementwiseNotEquals(DataFrameColumn)

Performs element-wise not-equals

public override Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> ElementwiseNotEquals (Microsoft.Data.Analysis.DataFrameColumn column);
override this.ElementwiseNotEquals : Microsoft.Data.Analysis.DataFrameColumn -> Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool>
Public Overrides Function ElementwiseNotEquals (column As DataFrameColumn) As PrimitiveDataFrameColumn(Of Boolean)

Parameters

Returns

Applies to

ElementwiseNotEquals(String)

Returns a boolean column that is the result of an elementwise not-equal comparison of each value in the column with value

public Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> ElementwiseNotEquals (string value);
override this.ElementwiseNotEquals : string -> Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool>
Public Function ElementwiseNotEquals (value As String) As PrimitiveDataFrameColumn(Of Boolean)

Parameters

value
String

Returns

Applies to

ElementwiseNotEquals<T>(T)

Performs an element-wise not-equals on each value in the column

public override Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> ElementwiseNotEquals<T> (T value);
override this.ElementwiseNotEquals : 'T -> Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool>
Public Overrides Function ElementwiseNotEquals(Of T) (value As T) As PrimitiveDataFrameColumn(Of Boolean)

Type Parameters

T

Parameters

value
T

Returns

Applies to