1 override of ElementwiseGreaterThan
Microsoft.Data.Analysis (1)
PrimitiveDataFrameColumn.BinaryOperations.cs (1)
682public override PrimitiveDataFrameColumn<bool> ElementwiseGreaterThan<U>(U value)
3 references to ElementwiseGreaterThan
Microsoft.Data.Analysis (2)
DataFrame.BinaryOperations.cs (2)
501DataFrameColumn newColumn = baseColumn.ElementwiseGreaterThan(values[i]); 517DataFrameColumn newColumn = baseColumn.ElementwiseGreaterThan(value);
Microsoft.Data.Analysis.Tests (1)
DataFrameTests.cs (1)
934BooleanDataFrameColumn bigInts = new BooleanDataFrameColumn("BigInts", df.Columns["Int"].ElementwiseGreaterThan(5));