Removes the column at the specified position from the data frame.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> RemoveColumnsAt(
IEnumerable<int> indexes
)
Public Function RemoveColumnsAt (
indexes As IEnumerable(Of Integer)
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ RemoveColumnsAt(
IEnumerable<int>^ indexes
)
member RemoveColumnsAt :
indexes : IEnumerable<int> -> DataFrame<'R, 'C>
Parameters
- indexes
- Type: System.Collections.GenericIEnumerableInt32
A sequence of zero-based indexes of the columns
to remove.
Return Value
Type:
DataFrameR,
C
Exception | Condition |
---|
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. |
Reference