Data
            
            
            
            Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
| Remove | Returns a new data frame with any rows containing missing values removed. | 
| Remove | Returns a new data frame with any rows containing missing values removed. | 
RemoveRowsWithMissingValues
            Returns a new data frame with any rows containing 
            missing values removed.
            
public DataFrame<R, C> RemoveRowsWithMissingValues()Return Value
DataFrame<R, C>A new data frame with rows containing one or more missing values removed. If none of the rows contain missing values, the current data frame is returned unmodified.
RemoveRowsWithMissingValues(C[])
            Returns a new data frame with any rows containing 
            missing values removed.
            
public DataFrame<R, C> RemoveRowsWithMissingValues(
	params C[] columnKeys
)Parameters
- columnKeys C[]
- A sequence of keys of columns to check.
Return Value
DataFrame<R, C>A 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.