DataFrame<R, C>.RemoveColumnAt Method

Removes the column at the specified position from the data frame.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public DataFrame<R, C> RemoveColumnAt(
	int index
)

Parameters

index  Int32
The zero-based index of the column to remove.

Return Value

DataFrame<R, C>

Exceptions

ArgumentOutOfRangeException

index is less than zero or greater than or equal to the number of columns in the data frame.

See Also