| FrameExtensionsNestTRowKey1, TRowKey2, TColumnKey Method |
Given a data frame whose row index has two levels, create a series
whose keys are the unique first level keys, and whose values are
those corresponding frames selected from the original data.
[category:Data structure manipulation]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<TRowKey1, Frame<TRowKey2, TColumnKey>> Nest<TRowKey1, TRowKey2, TColumnKey>(
this Frame<Tuple<TRowKey1, TRowKey2>, TColumnKey> frame
)
Parameters
- frame
- Type: DeedleFrameTupleTRowKey1, TRowKey2, TColumnKey
[Missing <param name="frame"/> documentation for "M:Deedle.FrameExtensions.Nest``3(Deedle.Frame{System.Tuple{``0,``1},``2})"]
Type Parameters
- TRowKey1
- TRowKey2
- TColumnKey
Return Value
Type:
SeriesTRowKey1,
FrameTRowKey2,
TColumnKey[Missing <returns> documentation for "M:Deedle.FrameExtensions.Nest``3(Deedle.Frame{System.Tuple{``0,``1},``2})"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FrameTupleTRowKey1,
TRowKey2,
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