Converts a matrix to a data frame with the same row and column indexes.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> ToDataFrame<R, C>(
Index<R> rowIndex,
Index<C> columnIndex
)
Public Function ToDataFrame(Of R, C) (
rowIndex As Index(Of R),
columnIndex As Index(Of C)
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
DataFrame<R, C>^ ToDataFrame(
Index<R>^ rowIndex,
Index<C>^ columnIndex
)
member ToDataFrame :
rowIndex : Index<'R> *
columnIndex : Index<'C> -> DataFrame<'R, 'C>
Parameters
- rowIndex
- Type: Extreme.DataAnalysisIndexR
- columnIndex
- Type: Extreme.DataAnalysisIndexC
Type Parameters
- R
- The element type of the row index.
- C
- The element type of the column index.
Return Value
Type:
DataFrameR,
CA data frame with the same values as the matrix.
Reference