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> RemoveColumnAt(
int index
)
Public Function RemoveColumnAt (
index As Integer
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ RemoveColumnAt(
int index
)
member RemoveColumnAt :
index : int -> DataFrame<'R, 'C>
Parameters
- index
- Type: SystemInt32
The zero-based index of the column to remove.
Return Value
Type:
DataFrameR,
C
Exception | Condition |
---|
ArgumentOutOfRangeException | index is less than zero or greater than
or equal to the number of columns in the data frame. |
Reference