| FrameModuleTransposeR, TColumnKey Method |
Returns a transposed data frame. The rows of the original data frame are used as the
columns of the new one (and vice versa). Use this operation if you have a data frame
and you mostly need to access its rows as a series (because accessing columns as a
series is more efficient).
[category:Sorting and index manipulation]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<TColumnKey, R> Transpose<R, TColumnKey>(
Frame<R, TColumnKey> frame
)
Parameters
- frame
- Type: DeedleFrameR, TColumnKey
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.Transpose``2(Deedle.Frame{``0,``1})"]
Type Parameters
- R
- TColumnKey
Return Value
Type:
FrameTColumnKey,
R[Missing <returns> documentation for "M:Deedle.FrameModule.Transpose``2(Deedle.Frame{``0,``1})"]
See Also