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(
Vector<bool> mask
)
Public Function RemoveRows (
mask As Vector(Of Boolean)
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ RemoveRows(
Vector<bool>^ mask
)
member RemoveRows :
mask : Vector<bool> -> DataFrame<'R, 'C>
Parameters
- mask
- Type: Extreme.MathematicsVectorBoolean
A boolean vector whose elements indicate
whether the corresponding row should be removed from the data frame.
Return Value
Type:
DataFrameR,
CA new data frame with the rows for which
mask is
removed.
Reference