| FrameModuleExpandAllColumnsR Method |
Creates a new data frame where all columns are expanded based on runtime
structure of the objects they store. The expansion is performed recrusively
to the specified depth. A column can be expanded if it is `Series<string, T>`
or `IDictionary<K, V>` or if it is any .NET object with readable
properties.
## Parameters
- `nesting` - The nesting level for expansion. When set to 0, nothing is done.
- `frame` - Input data frame whose columns will be expanded
[category:Sorting and index manipulation]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<R, string> ExpandAllColumns<R>(
int nesting,
Frame<R, string> frame
)
Parameters
- nesting
- Type: SystemInt32
[Missing <param name="nesting"/> documentation for "M:Deedle.FrameModule.ExpandAllColumns``1(System.Int32,Deedle.Frame{``0,System.String})"]
- frame
- Type: DeedleFrameR, String
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.ExpandAllColumns``1(System.Int32,Deedle.Frame{``0,System.String})"]
Type Parameters
- R
Return Value
Type:
FrameR,
String[Missing <returns> documentation for "M:Deedle.FrameModule.ExpandAllColumns``1(System.Int32,Deedle.Frame{``0,System.String})"]
See Also