Returns a new data frame with any rows containing
missing values removed.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> RemoveRowsWithMissingValues(
params C[] columnKeys
)
Public Function RemoveRowsWithMissingValues (
ParamArray columnKeys As C()
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ RemoveRowsWithMissingValues(
... array<C>^ columnKeys
)
member RemoveRowsWithMissingValues :
columnKeys : 'C[] -> DataFrame<'R, 'C>
Parameters
- columnKeys
- Type: C
A sequence of keys of columns to check.
Return Value
Type:
DataFrameR,
CA new data frame with rows containing a missing value
in one of the columns specified by
columnKeys removed.
If none of the rows contain missing values, the current data frame
is returned unmodified.
Reference