Click or drag to resize
FrameModuleIndexColumnsWithC2, R, C1 Method
Replace the column index of the frame with the provided sequence of column keys. The columns of the frame are assigned keys according to the provided order. The specified column is removed from the resulting frame. ## Parameters - `frame` - Source data frame whose column index are to be replaced. - `keys` - A collection of new column keys. [category:Sorting and index manipulation]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C2> IndexColumnsWith<C2, R, C1>(
	IEnumerable<C2> keys,
	Frame<R, C1> frame
)

Parameters

keys
Type: System.Collections.GenericIEnumerableC2

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

frame
Type: DeedleFrameR, C1

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

Type Parameters

C2
R
C1

Return Value

Type: FrameR, C2

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

See Also