swat.cas.table.CASTable.dropna
- CASTable.dropna(axis=0, how='any', thresh=None, subset=None, inplace=False, **kwargs)
Drop rows that contain missing values
- Parameters:
- axisint or string, optional
Not supported. Only dropping of rows is supported.
- howstring, optional
If any, the row is dropped if any value is missing. If all, the row is dropped only if all values are missing.
- threshint, optional
Not supported
- subsetlist-of-strings, optional
Not supported
- inplaceboolean, optional
If True, the table modified in place. If False, a new table is created.
- Returns:
- CASTable object