DataFrame.
kurtosis
Return unbiased kurtosis using Fisher’s definition of kurtosis (kurtosis of normal == 0.0). Normalized by N-1.
Axis for the function to be applied on.
Exclude NA/null values when computing the result.
Changed in version 3.4.0: Supported including NA/null values.
Include only float, int, boolean columns. False is not supported. This parameter is mainly for pandas compatibility.
Examples
>>> df = ps.DataFrame({'a': [1, 2, 3, np.nan, 6], 'b': [0.1, 0.2, 0.3, np.nan, 0.8]}, ... columns=['a', 'b'])
On a DataFrame:
>>> df.kurtosis() a 1.500000 b 2.703924 dtype: float64
On a Series:
>>> df['a'].kurtosis() 1.5