| FrameExtensionsUnnestTRowKey1, TRowKey2, TColumnKey Method |
Given a series whose values are frames, create a frame resulting
from the concatenation of all the frames' rows, with the resulting
keys having two levels. This is the inverse operation to nest.
[category:Data structure manipulation]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<Tuple<TRowKey1, TRowKey2>, TColumnKey> Unnest<TRowKey1, TRowKey2, TColumnKey>(
this Series<TRowKey1, Frame<TRowKey2, TColumnKey>> series
)
Parameters
- series
- Type: DeedleSeriesTRowKey1, FrameTRowKey2, TColumnKey
[Missing <param name="series"/> documentation for "M:Deedle.FrameExtensions.Unnest``3(Deedle.Series{``0,Deedle.Frame{``1,``2}})"]
Type Parameters
- TRowKey1
- TRowKey2
- TColumnKey
Return Value
Type:
FrameTupleTRowKey1,
TRowKey2,
TColumnKey[Missing <returns> documentation for "M:Deedle.FrameExtensions.Unnest``3(Deedle.Series{``0,Deedle.Frame{``1,``2}})"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
SeriesTRowKey1,
FrameTRowKey2,
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