| FrameModuleNestR1, R2, C Method |
Given a frame with two-level row index, returns a series indexed by the first
part of the key, containing frames representing individual groups. This function
can be used if you want to perform a transformation individually on each group
(e.g. using `Series.mapValues` after calling `Frame.nest`).
[category:Hierarchical index operations]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Series<R1, Frame<R2, C>> Nest<R1, R2, C>(
Frame<Tuple<R1, R2>, C> frame
)
Parameters
- frame
- Type: DeedleFrameTupleR1, R2, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.Nest``3(Deedle.Frame{System.Tuple{``0,``1},``2})"]
Type Parameters
- R1
- R2
- C
Return Value
Type:
SeriesR1,
FrameR2,
C[Missing <returns> documentation for "M:Deedle.FrameModule.Nest``3(Deedle.Frame{System.Tuple{``0,``1},``2})"]
See Also