Returns a data frame with the current vector as its only column.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> ToDataFrame<R, C>(
Index<R> rowIndex,
C columnKey
)
Public Function ToDataFrame(Of R, C) (
rowIndex As Index(Of R),
columnKey As C
) As DataFrame(Of R, C)
public:
generic<typename R, typename C>
DataFrame<R, C>^ ToDataFrame(
Index<R>^ rowIndex,
C columnKey
)
member ToDataFrame :
rowIndex : Index<'R> *
columnKey : 'C -> DataFrame<'R, 'C>
Parameters
- rowIndex
- Type: Extreme.DataAnalysisIndexR
The row index of the new data frame. - columnKey
- Type: C
The column key of the vector
in the new data frame.
Type Parameters
- R
- The element type of the row index.
- C
- The type of the column key.
Return Value
Type:
DataFrameR,
CA data frame with the current vector as its only column.
Reference