Vector<T>.ToDataFrame<C>(C) Method

Returns a data frame with the current vector as its only column.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DataFrame<long, C> ToDataFrame<C>(
	C columnKey
)

Parameters

columnKey  C
The column key of the vector in the new data frame.

Type Parameters

C
The type of the column key.

Return Value

DataFrame<Int64, C>
A data frame with the current vector as its only column.

See Also