Click or drag to resize
FrameExtensionsTransposeTRowKey, 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). ## Parameters - `frame` - Source data frame to be transposed. [category:Data structure manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<TColumnKey, TRowKey> Transpose<TRowKey, TColumnKey>(
	this Frame<TRowKey, TColumnKey> frame
)

Parameters

frame
Type: DeedleFrameTRowKey, TColumnKey

[Missing <param name="frame"/> documentation for "M:Deedle.FrameExtensions.Transpose``2(Deedle.Frame{``0,``1})"]

Type Parameters

TRowKey
TColumnKey

Return Value

Type: FrameTColumnKey, TRowKey

[Missing <returns> documentation for "M:Deedle.FrameExtensions.Transpose``2(Deedle.Frame{``0,``1})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type FrameTRowKey, TColumnKey. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also