Click or drag to resize

DataFrameCleanCols(Int32) Method

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

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

Parameters

rowIndices  Int32
The indices of the rows to check for missing vlaues.

Return Value

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