DataFrame.Filter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Filter(PrimitiveDataFrameColumn<Int64>) |
Returns a new DataFrame using the row indices in |
Filter(PrimitiveDataFrameColumn<Boolean>) |
Returns a new DataFrame using the boolean values in |
Filter(PrimitiveDataFrameColumn<Int32>) |
Returns a new DataFrame using the row indices in |
Filter(PrimitiveDataFrameColumn<Int64>)
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame Filter (Microsoft.Data.Analysis.PrimitiveDataFrameColumn<long> rowIndices);
member this.Filter : Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int64> -> Microsoft.Data.Analysis.DataFrame
Public Function Filter (rowIndices As PrimitiveDataFrameColumn(Of Long)) As DataFrame
Parameters
- rowIndices
- PrimitiveDataFrameColumn<Int64>
A column of row indices
Returns
Applies to
Filter(PrimitiveDataFrameColumn<Boolean>)
Returns a new DataFrame using the boolean values in filter
public Microsoft.Data.Analysis.DataFrame Filter (Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> filter);
member this.Filter : Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> -> Microsoft.Data.Analysis.DataFrame
Public Function Filter (filter As PrimitiveDataFrameColumn(Of Boolean)) As DataFrame
Parameters
- filter
- PrimitiveDataFrameColumn<Boolean>
A column of booleans
Returns
Applies to
Filter(PrimitiveDataFrameColumn<Int32>)
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame Filter (Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int> rowIndices);
member this.Filter : Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int> -> Microsoft.Data.Analysis.DataFrame
Public Function Filter (rowIndices As PrimitiveDataFrameColumn(Of Integer)) As DataFrame
Parameters
- rowIndices
- PrimitiveDataFrameColumn<Int32>
A column of row indices