FrameViewWhereNotNull Method

Removes any rows that have null values in the named columns.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public FrameView WhereNotNull(
	params string[] columnNames
)

Parameters

columnNames  String
The columns to check for null values.

Return Value

FrameView
A new view, without the rows that have null values in the named columns.

Remarks

If no column names are given, rows with nulls in any column are removed.

See Also