DataFrame<R, C>.RemoveColumn Method

Removes the specified column from the data frame.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public DataFrame<R, C> RemoveColumn(
	C key
)

Parameters

key  C
The key of the column.

Return Value

DataFrame<R, C>

Exceptions

KeyNotFoundException

The data frame does not have a column with the specified key.

See Also