| FrameModuleIndexRowsC, R1, R2 Method |
Returns a data frame whose rows are indexed based on the specified column of the original
data frame. The generic type parameter is specifies the type of the values in the required
index column (and usually needs to be specified using a type annotation). The specified
column is removed from the resulting frame.
## Parameters
- `frame` - Source data frame whose row index is to be replaced.
- `column` - The name of a column in the original data frame that will be used for the new
index. Note that the values in the column need to be unique.
[category:Sorting and index manipulation]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax public static Frame<R2, C> IndexRows<C, R1, R2>(
C column,
Frame<R1, C> frame
)
Parameters
- column
- Type: C
[Missing <param name="column"/> documentation for "M:Deedle.FrameModule.IndexRows``3(``0,Deedle.Frame{``1,``0})"]
- frame
- Type: DeedleFrameR1, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.IndexRows``3(``0,Deedle.Frame{``1,``0})"]
Type Parameters
- C
- R1
- R2
Return Value
Type:
FrameR2,
C[Missing <returns> documentation for "M:Deedle.FrameModule.IndexRows``3(``0,Deedle.Frame{``1,``0})"]
See Also