DataFrame<R, C>.RemoveColumnsAt Method

Removes the column at the specified position 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> 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