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.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

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

Parameters

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

Return Value

A new data frame cleaned of missing values.

Remarks

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

Exceptions

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

See Also