Removes columns that 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 CleanAndRemoveCols(
params int[] rowIndices
) |
| Visual Basic (Declaration) |
|---|
Public Function CleanAndRemoveCols ( _
ParamArray rowIndices As Integer() _
) As DataFrame |
| Visual C++ |
|---|
public:
DataFrame^ CleanAndRemoveCols(
... array<int>^ rowIndices
) |
Parameters
- rowIndices
- Type: array<
System..::.Int32
>[]()[]
The indices of the rows to check for missing vlaues.
Return Value
This data frame cleaned of missing values.
Remarks
Exceptions
See Also