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

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DataFrame CleanAndRemoveRows(
	params int[] colIndices
)
Visual Basic (Declaration)
Public Function CleanAndRemoveRows ( _
	ParamArray colIndices As Integer() _
) As DataFrame
Visual C++
public:
DataFrame^ CleanAndRemoveRows(
	... array<int>^ colIndices
)

Parameters

colIndices
Type: array< System..::.Int32 >[]()[]
The indices of the columns to check for missing vlaues.

Return Value

This data frame cleaned of missing values.

Remarks

Columns other than the given columns are ignored in determining which rows to clean.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.IndexOutOfRangeException Thrown if a given column index is negative, or greater than or equal to the number of columns.

See Also