Click or drag to resize

DataFrameCleanRows(Int32) Method

Returns a new data frame containing the rows in this data frame that do not contain missing values in the given columns.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame CleanRows(
	params int[] colIndices
)

Parameters

colIndices  Int32
The indices of the columns to check for missing vlaues.

Return Value

DataFrame
A new data frame cleaned of missing values.
Exceptions
ExceptionCondition
IndexOutOfRangeException Thrown if a given column index is negative, or greater than or equal to the number of columns.
Remarks
Columns other than the given columns are ignored in determining which rows to clean.
See Also