IDataFrame Interface

Specifies the basic functionality of a data frame.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public interface IDataFrame

Properties

ColumnCount Gets the number of rows in the data frame.
ColumnIndex Gets the column index of the data frame.
Item Gets the column at the specified position in the data frame.
RowCount Gets the number of rows in the data frame.
RowIndex Gets the row index of the data frame.
Rows Gets an enumerator for the rows of the data frame.

Methods

GetColumn<C> Returns the column with the specified key in the data frame.
GetRows Returns a data frame that contains only the specified rows.

Extension Methods

ToDataTable Constructs a data table from a data frame.
(Defined by DataExtensions)
ToDataTable Constructs a data table from a data frame.
(Defined by DataExtensions)
ToDataTable<C> Constructs a data table from the specified columns a data frame.
(Defined by DataExtensions)
ToDataTable<C> Constructs a data table from the specified columns a data frame.
(Defined by DataExtensions)

See Also