Returns a new data frame that contains only the rows specified by a boolean mask.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> GetRows(
Vector<bool> mask
)
Public Function GetRows (
mask As Vector(Of Boolean)
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ GetRows(
Vector<bool>^ mask
)
member GetRows :
mask : Vector<bool> -> DataFrame<'R, 'C>
Parameters
- mask
- Type: Extreme.MathematicsVectorBoolean
A boolean vector whose elements indicate whether the corresponding row
should be included in the new data frame.
Return Value
Type:
DataFrameR,
CA new data frame containing only the rows whose corresponding value in
mask is
.
Reference