Click or drag to resize
FrameModuleIndexRowsByIntC, 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 `int` (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
C#
public static Frame<int, C> IndexRowsByInt<C, R1>(
	C column,
	Frame<R1, C> frame
)

Parameters

column
Type: C

[Missing <param name="column"/> documentation for "M:Deedle.FrameModule.IndexRowsByInt``2(``0,Deedle.Frame{``1,``0})"]

frame
Type: DeedleFrameR1, C

[Missing <param name="frame"/> documentation for "M:Deedle.FrameModule.IndexRowsByInt``2(``0,Deedle.Frame{``1,``0})"]

Type Parameters

C
R1

Return Value

Type: FrameInt32, C

[Missing <returns> documentation for "M:Deedle.FrameModule.IndexRowsByInt``2(``0,Deedle.Frame{``1,``0})"]

See Also