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.2.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 ...
🌐
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
🌐
Kaggle
kaggle.com › code › sandhyakrishnan02 › normal-distribution-skewness-and-kurtosis
Normal Distribution, Skewness, and Kurtosis
January 24, 2023 - This notebook analyses distribution, Skewness, and Kurtosis of the datasetNormal DistributionEmpirical ruleTo plot Normal DistributionNormal Distribution CurveBox Plot with plotly.expressSkewnessDistribution curveBox plot distributionKurtosisSkewness and Kurtosis of Target and ResponseTarget C(Total cost, in $1000)Q(revenue passenger miles)PF (Fuel price)LF(Load factor)Reference
🌐
Kaggle
kaggle.com › questions-and-answers › 73018
Why is kurtosis unavailable via agg() on GroupBy DataFrames? | Kaggle
This (https://www.shanelynn.ie/summarising-aggregation-and-grouping-data-in-python-pandas/) and the pandas documentation (http://pandas.pydata.org/pandas-docs/stable/basics.html) both say that 'kurt' is available.
🌐
Apache
spark.apache.org › docs › latest › api › python › reference › pyspark.pandas › api › pyspark.pandas.DataFrame.kurtosis.html
pyspark.pandas.DataFrame.kurtosis — PySpark 4.2.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.
🌐
DataCamp
datacamp.com › tutorial › understanding-skewness-and-kurtosis
Understanding Skewness And Kurtosis And How to Plot Them | DataCamp
December 6, 2023 - from scipy.stats import kurtosis kurtosis(diamond_prices) 2.177382669056634 · Pandas offers two functions for kurtosis: kurt and kurtosis.