Click or drag to resize
FrameModuleIndexRowsWithR2, R1, C Method
Replace the row index of the frame with the provided sequence of row keys. The rows of the frame are assigned keys according to the provided order. ## Parameters - `frame` - Source data frame whose row index are to be replaced. - `keys` - A collection of new row keys. [category:Sorting and index manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R2, C> IndexRowsWith<R2, R1, C>(
	IEnumerable<R2> keys,
	Frame<R1, C> frame
)

Parameters

keys
Type: System.Collections.GenericIEnumerableR2

[Missing <param name="keys"/> documentation for "M:Deedle.FrameModule.IndexRowsWith``3(System.Collections.Generic.IEnumerable{``0},Deedle.Frame{``1,``2})"]

frame
Type: DeedleFrameR1, C

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

Type Parameters

R2
R1
C

Return Value

Type: FrameR2, C

[Missing <returns> documentation for "M:Deedle.FrameModule.IndexRowsWith``3(System.Collections.Generic.IEnumerable{``0},Deedle.Frame{``1,``2})"]

See Also