Data Frame<R, C>.Remove Rows At Method
Returns a new data frame that has the specified rows removed.
Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A new data frame with the rows whose index is in indexes removed.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public virtual DataFrame<R, C> RemoveRowsAt(
IEnumerable<int> indexes
)
Parameters
- indexes IEnumerable<Int32>
- A sequence of zero-based row indexes to remove.
Return Value
DataFrame<R, C>A new data frame with the rows whose index is in indexes removed.
Exceptions
Argument | indexes is null. |
Argument | One or more of the values in indexes is less than zero or greater than or equal to the number of rows in the data frame. |