Returns a new data frame that has the specified rows removed.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> RemoveRows(
IEnumerable<R> rowKeys
)
Public Function RemoveRows (
rowKeys As IEnumerable(Of R)
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ RemoveRows(
IEnumerable<R>^ rowKeys
)
member RemoveRows :
rowKeys : IEnumerable<'R> -> DataFrame<'R, 'C>
Parameters
- rowKeys
- Type: System.Collections.GenericIEnumerableR
A sequence of row keys to remove.
Return Value
Type:
DataFrameR,
CA new data frame with the rows whose key is in
rowKeys removed.
Reference