FrameViewWhereT(String, FuncT, Boolean) Method

Selects rows in which the value of the given column matches the given criteria.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public FrameView Where<T>(
	string columnName,
	Func<T, bool> selector
)

Parameters

columnName  String
The name of the column.
selector  FuncT, Boolean
A function which accepts or rejects values.

Type Parameters

T
The type of the row data.

Return Value

FrameView
A new view, containing only those rows in which the columnName value was accepted by the selector.

See Also