xorbits.pandas.Series.mode#
- Series.mode(dropna: bool = True) pandas.core.series.Series[source]#
Return the mode(s) of the Series.
The mode is the value that appears most often. There can be multiple modes.
Always returns Series even if only one value is returned.
- Parameters
dropna (bool, default True) – Don’t consider counts of NaN/NaT.
- Returns
Modes of the Series in sorted order.
- Return type
Warning
This method has not been implemented yet. Xorbits will try to execute it with pandas.
This docstring was copied from pandas.core.series.Series.