modin.pandas.Series.skew¶
- Series.skew(axis: Axis = 0, skipna: bool = True, numeric_only=False, **kwargs) Series | float[source]¶
Return unbiased skew, normalized over n-1
- Parameters:
axis (Optional[int]) – Axis to calculate skew on, only 0 (columnar) is supported
skipna (Optional[bool]) – Exclude NA values when calculating result ( only True is supported )
numeric_only (Optional[bool]) – Include only the numeric columns ( only True is supported )
level (Optional[bool]) – Not Supported, included for compatibility with other stats calls
- Return type:
A series ( or scalar if used on a series ) with the calculated skew
Examples