Returns a new data frame with any rows containing
missing values removed.
Namespace: Extreme.DataAnalysisAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
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.
Numerical Libraries
Supported in: 6.0
Reference