Click or drag to resize

DataFrameCleanAndRemoveCols(Int32) Method

Removes columns that contain missing values in the given rows.

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

Parameters

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

Return Value

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