 | DataFrameCleanAndRemoveCols(Int32) Method |
Removes columns that contain missing values in the given rows.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame CleanAndRemoveCols(
params int[] rowIndices
)
Public Function CleanAndRemoveCols (
ParamArray rowIndices As Integer()
) As DataFrame
public:
DataFrame^ CleanAndRemoveCols(
... array<int>^ rowIndices
)
member CleanAndRemoveCols :
rowIndices : int[] -> DataFrame
Parameters
- rowIndices Int32
-
The indices of the rows to check for missing vlaues.
Return Value
DataFrameThis data frame cleaned of missing values.
ExceptionsException | Condition |
---|
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