swat.cas.table.CASTable.quantile¶
-
CASTable.
quantile
(self, q=0.5, axis=0, numeric_only=True, interpolation='nearest', casout=None, **kwargs)¶ Return values at the given quantile
- Parameters
- qfloat, optional
The quantiles to compute (0 <= q <= 1).
- axisint, optional
Not implemented.
- numeric_onlyboolean, optional
Include only numeric columns.
- interpolationstring, optional
Only ‘nearest’ is supported.
- casoutbool or string or dict or CASTable, optional
Indicates the CAS output table to use for output.
Note: This is only use if by groups are used.
- Returns
- pandas.Series
If no By groups are specified, or only a single quantile is requested.
- pandas.Dataframe
If By groups are specified.
See also