swat.cas.table.CASTable.fillna
- CASTable.fillna(value=None, method=None, axis=None, inplace=False, limit=None, downcast=None, **kwargs)
Fill missing values using the specified method
- Parameters:
- valuescalar or dict or Series or DataFrame or CASColumn or CASTable
The value used to fill missing values. If a dict, Series, or DataFrame is specified, the keys / index values will be used as the column names.
- methodstring, optional
Not supported
- axisint or string, optional
Not supported. The axis is always ‘columns’.
- inplaceboolean, optional
If True, the data is modified in place. If False, a new table be created.
- limitint, optional
Not supported
- downcastdict, optional
Not supported
- Returns:
- CASTable object