Compartir a través de


DataFrame.Item[IEnumerable Propiedad

Definición

Sobrecargas

Item[IEnumerable<Int64>]

Devuelve un nuevo dataframe con los índices de fila de . rowIndices

Item[String]

Un indexador basado en Name

Item[IEnumerable<Int32>]

Devuelve un nuevo dataframe con los índices de fila de . rowIndices

Item[Int64, Int32]

Indizador para obtener o establecer valores.

Item[PrimitiveDataFrameColumn<Int64>]

Devuelve un nuevo dataframe con los índices de fila de . rowIndices

Item[PrimitiveDataFrameColumn<Int32>]

Devuelve un nuevo dataframe con los índices de fila de . rowIndices

Item[PrimitiveDataFrameColumn<Boolean>]

Devuelve un nuevo dataframe con los valores booleanos del filtro.

Item[IEnumerable<Boolean>]

Devuelve un nuevo objeto DataFrame con los valores booleanos de . rowFilter

Item[IEnumerable<Int64>]

Devuelve un nuevo dataframe con los índices de fila de . 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

Parámetros

rowIndices
IEnumerable<Int64>

Valor de propiedad

Se aplica a

Item[String]

Un indexador basado en 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

Parámetros

columnName
String

Nombre de un objeto DataFrameColumn

Valor de propiedad

Si DataFrameColumn existe.

Excepciones

Produce si columnName no está presente en este DataFrame

Se aplica a

Item[IEnumerable<Int32>]

Devuelve un nuevo dataframe con los índices de fila de . 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

Parámetros

rowIndices
IEnumerable<Int32>

Valor de propiedad

Se aplica a

Item[Int64, Int32]

Indizador para obtener o establecer valores.

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

Parámetros

rowIndex
Int64

Índice de fila basado en cero

columnIndex
Int32

Índice de columna de base cero

Valor de propiedad

Valor almacenado en la intersección de rowIndex y columnIndex

Se aplica a

Item[PrimitiveDataFrameColumn<Int64>]

Devuelve un nuevo dataframe con los índices de fila de . 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

Parámetros

rowIndices
PrimitiveDataFrameColumn<Int64>

Columna de índices de fila

Valor de propiedad

Se aplica a

Item[PrimitiveDataFrameColumn<Int32>]

Devuelve un nuevo dataframe con los índices de fila de . 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

Parámetros

rowIndices
PrimitiveDataFrameColumn<Int32>

Columna de índices de fila

Valor de propiedad

Se aplica a

Item[PrimitiveDataFrameColumn<Boolean>]

Devuelve un nuevo dataframe con los valores booleanos del filtro.

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

Parámetros

rowFilter
PrimitiveDataFrameColumn<Boolean>

Una columna de booleanos

Valor de propiedad

Se aplica a

Item[IEnumerable<Boolean>]

Devuelve un nuevo objeto DataFrame con los valores booleanos de . 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

Parámetros

rowFilter
IEnumerable<Boolean>

Valor de propiedad

Se aplica a