RObject.ToDataFrame Method

Definition

Namespace: Extreme.Data.R
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ToDataFrame() Converts the object to a data frame.
ToDataFrame<R, C>() Converts the object to a data frame.

RObject.ToDataFrame

Converts the object to a data frame.
C#
public virtual DataFrame<long, string> ToDataFrame()

Return Value

DataFrame<Int64, String>
The new data frame.

Implements

IDataObject<TObject>.ToDataFrame()

RObject.ToDataFrame<R, C>

Converts the object to a data frame.
C#
public virtual DataFrame<R, C> ToDataFrame<R, C>()

Type Parameters

R
The type of the row keys of the data frame.
C
The type of the column keys of the data frame.

Return Value

DataFrame<R, C>
The new data frame.

Implements

IDataObject<TObject>.ToDataFrame<R, C>()

See Also