FrameViewWhereNotNull Method |
Removes any rows that have null values in the named columns.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public FrameView WhereNotNull(
params string[] columnNames
)
Public Function WhereNotNull (
ParamArray columnNames As String()
) As FrameView
public:
FrameView^ WhereNotNull(
... array<String^>^ columnNames
)
member WhereNotNull :
columnNames : string[] -> FrameView
Parameters
- columnNames
- Type: SystemString
The columns to check for null values.
Return Value
Type:
FrameViewA 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