Click or drag to resize
FrameModuleDropColumnC, R Method
Creates a new data frame that contains all data from the original data frame without the specified series (column). The operation throws if the column key is not found. ## Parameters - `column` - The key (or name) to be dropped from the frame - `frame` - Source data frame (which is not mutated by the operation) [category:Accessing frame data and lookup]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> DropColumn<C, R>(
	C column,
	Frame<R, C> frame
)

Parameters

column
Type: C

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

frame
Type: DeedleFrameR, C

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

Type Parameters

C
R

Return Value

Type: FrameR, C

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

See Also