DataFrame.Item[IEnumerable Property
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
Item[IEnumerable<Int64>] |
Returns a new DataFrame using the row indices in |
Item[String] |
An indexer based on Name |
Item[IEnumerable<Int32>] |
Returns a new DataFrame using the row indices in |
Item[Int64, Int32] |
An Indexer to get or set values. |
Item[PrimitiveDataFrameColumn<Int64>] |
Returns a new DataFrame using the row indices in |
Item[PrimitiveDataFrameColumn<Int32>] |
Returns a new DataFrame using the row indices in |
Item[PrimitiveDataFrameColumn<Boolean>] |
Returns a new DataFrame using the boolean values in filter |
Item[IEnumerable<Boolean>] |
Returns a new DataFrame using the boolean values in |
Item[IEnumerable<Int64>]
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame this[System.Collections.Generic.IEnumerable<long> rowIndices] { get; }
member this.Item(seq<int64>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowIndices As IEnumerable(Of Long)) As DataFrame
Parameters
- rowIndices
- IEnumerable<Int64>
Property Value
Applies to
Item[String]
An indexer based on Name
public Microsoft.Data.Analysis.DataFrameColumn this[string columnName] { get; set; }
member this.Item(string) : Microsoft.Data.Analysis.DataFrameColumn with get, set
Default Public Property Item(columnName As String) As DataFrameColumn
Parameters
- columnName
- String
The name of a DataFrameColumn
Property Value
A DataFrameColumn if it exists.
Exceptions
Throws if columnName
is not present in this DataFrame
Applies to
Item[IEnumerable<Int32>]
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame this[System.Collections.Generic.IEnumerable<int> rowIndices] { get; }
member this.Item(seq<int>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowIndices As IEnumerable(Of Integer)) As DataFrame
Parameters
- rowIndices
- IEnumerable<Int32>
Property Value
Applies to
Item[Int64, Int32]
An Indexer to get or set values.
public object this[long rowIndex, int columnIndex] { get; set; }
member this.Item(int64 * int) : obj with get, set
Default Public Property Item(rowIndex As Long, columnIndex As Integer) As Object
Parameters
- rowIndex
- Int64
Zero based row index
- columnIndex
- Int32
Zero based column index
Property Value
The value stored at the intersection of rowIndex
and columnIndex
Applies to
Item[PrimitiveDataFrameColumn<Int64>]
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame this[Microsoft.Data.Analysis.PrimitiveDataFrameColumn<long> rowIndices] { get; }
member this.Item(Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int64>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowIndices As PrimitiveDataFrameColumn(Of Long)) As DataFrame
Parameters
- rowIndices
- PrimitiveDataFrameColumn<Int64>
A column of row indices
Property Value
Applies to
Item[PrimitiveDataFrameColumn<Int32>]
Returns a new DataFrame using the row indices in rowIndices
public Microsoft.Data.Analysis.DataFrame this[Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int> rowIndices] { get; }
member this.Item(Microsoft.Data.Analysis.PrimitiveDataFrameColumn<int>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowIndices As PrimitiveDataFrameColumn(Of Integer)) As DataFrame
Parameters
- rowIndices
- PrimitiveDataFrameColumn<Int32>
A column of row indices
Property Value
Applies to
Item[PrimitiveDataFrameColumn<Boolean>]
Returns a new DataFrame using the boolean values in filter
public Microsoft.Data.Analysis.DataFrame this[Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool> rowFilter] { get; }
member this.Item(Microsoft.Data.Analysis.PrimitiveDataFrameColumn<bool>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowFilter As PrimitiveDataFrameColumn(Of Boolean)) As DataFrame
Parameters
- rowFilter
- PrimitiveDataFrameColumn<Boolean>
A column of booleans
Property Value
Applies to
Item[IEnumerable<Boolean>]
Returns a new DataFrame using the boolean values in rowFilter
public Microsoft.Data.Analysis.DataFrame this[System.Collections.Generic.IEnumerable<bool> rowFilter] { get; }
member this.Item(seq<bool>) : Microsoft.Data.Analysis.DataFrame
Default Public ReadOnly Property Item(rowFilter As IEnumerable(Of Boolean)) As DataFrame
Parameters
- rowFilter
- IEnumerable<Boolean>