Click or drag to resize

DataFrameCleanAndRemoveRows(Int32) Method

Removes rows in this data frame that missing values in the given columns.

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

Parameters

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

Return Value

DataFrame
This 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