Constructs a data frame from a data table.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DataFrame<long, string> FromDataTable(
DataTable table
)
Public Shared Function FromDataTable (
table As DataTable
) As DataFrame(Of Long, String)
public:
static DataFrame<long long, String^>^ FromDataTable(
DataTable^ table
)
static member FromDataTable :
table : DataTable -> DataFrame<int64, string>
Parameters
- table
- Type: System.DataDataTable
The DataTable that contains the data.
Return Value
Type:
DataFrameInt64,
StringA new data frame containing the data in
table.
Reference