| FrameModuleIndexRowsByDateTimeC, R1 Method |
Returns a data frame whose rows are indexed based on the specified column of the original
data frame. This function casts (or converts) the column key to values of type `DateTime`
(a generic variant that may require some type annotation is `Frame.indexRows`)
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<DateTime, C> IndexRowsByDateTime<C, R1>(
C column,
Frame<R1, C> frame
)
Parameters
- column
- Type: C
[Missing <param name="column"/> documentation for "M:Deedle.FrameModule.IndexRowsByDateTime``2(``0,Deedle.Frame{``1,``0})"]
- frame
- Type: DeedleFrameR1, C
[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.IndexRowsByDateTime``2(``0,Deedle.Frame{``1,``0})"]
Type Parameters
- C
- R1
Return Value
Type:
FrameDateTime,
C[Missing <returns> documentation for "M:Deedle.FrameModule.IndexRowsByDateTime``2(``0,Deedle.Frame{``1,``0})"]
See Also