The pandas documentation says the following

Return unbiased kurtosis over requested axis using Fisher’s definition of kurtosis (kurtosis of normal == 0.0)

This is probably the excess kurtosis, defined as kurtosis - 3.

Answer from Patrick Perry on Stack Overflow
🌐
Databricks
api-docs.databricks.com › python › pyspark › latest › pyspark.pandas › api › pyspark.pandas.DataFrame.kurtosis.html
pyspark.pandas.DataFrame.kurtosis — PySpark master documentation
DataFrame.kurtosis(axis: Union[int, str, None] = None, skipna: bool = True, numeric_only: bool = None) → Union[int, float, bool, str, bytes, decimal.Decimal, datetime.date, datetime.datetime, None, Series]¶
🌐
Apache
spark.apache.org › docs › latest › api › python › reference › pyspark.pandas › api › pyspark.pandas.Series.kurtosis.html
pyspark.pandas.Series.kurtosis — PySpark 4.0.0 documentation
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.
🌐
Medium
medium.com › @atanudan › kurtosis-skew-function-in-pandas-aa63d72e20de
Kurtosis() & Skew() Function In Pandas | by Atanu Dan | Medium
September 16, 2020 - Skewness essentially measures the symmetry of the distribution, while kurtosis determines the heaviness of the distribution tails.
🌐
GeeksforGeeks
geeksforgeeks.org › pandas › python-pandas-series-kurtosis
Python | Pandas Series.kurtosis() - GeeksforGeeks
February 11, 2019 - The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.kurtosis() function returns an unbiased kurtosis over requested axis using Fisher’s definition of kurtosis (kurtosis of normal == 0.0).
Find elsewhere
🌐
s666
pythonforfinance.net › home › basic data analysis › what are ‘skew’ lookin’ at? – calculating skew and kurtosis with python…
What Are 'skew' Lookin' At? - Calculating Skew And Kurtosis With Python... - Python For Finance
June 16, 2019 - So let’s move on to using Python to analyse the skew and kurtosis of a returns series. To get our return series, we will use Pandas to download the historical stock prices for, let’s say Google, and turn that price series into a series of daily percentage returns.
🌐
LabEx
labex.io › tutorials › pandas-dataframe-kurt-method-68647
Python Pandas DataFrame Kurtosis | Data Analysis Tutorials | LabEx
The DataFrame.kurt() method in Python pandas is used to calculate the kurtosis of a DataFrame. Kurtosis is a statistical measure that describes the shape of a distribution. It measures whether the data is heavy-tailed or light-tailed compared ...
🌐
Pandas
pandas.pydata.org › pandas-docs › version › 0.18 › generated › pandas.DataFrame.kurtosis.html
pandas.DataFrame.kurtosis — pandas 0.18.1 documentation
Return unbiased kurtosis over requested axis using Fisher’s definition of kurtosis (kurtosis of normal == 0.0).
🌐
Use pandas
usepandas.com › data-analysis › kurtosis
How to measure Kurtosis in Python pandas | Use pandas
Learn how to use Kurtosis (how light or heavy tailed a distribution is) in Python Pandas