DataFrame<R, C>.RemoveColumnsAt 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> RemoveColumnsAt(
	IEnumerable<int> indexes
)

Parameters

indexes  IEnumerable<Int32>
A sequence of zero-based indexes of the columns to remove.

Return Value

DataFrame<R, C>

Exceptions

ArgumentException

One or more of the members of indexes is less than zero or greater than or equal to the number of columns in the data frame.

See Also