Parameters: array: Input array or object having the elements. axis: Axis along which the kurtosis value is to be measured. By default axis = 0. fisher: Bool; Fisher’s definition is used (normal 0.0) if True; else Pearson’s definition is used (normal 3.0) if set to False. bias: Bool; calculations are corrected for statistical bias, if set to False.
Returns: Kurtosis value of the normal distribution for the data set.
print ( ’Kurtosis for normal distribution:’ , kurtosis (y1))
print ( ’Kurtosis for normal distribution:’ ,
kurtosis (y1, fisher = False ))
print ( ’Kurtosis for normal distribution : ’,
kurtosis (y1 , fisher = True ))
Output:
Kurtosis for normal distribution: -0.3073930877422071 Kurtosis for normal distribution: 2.692606912257793 Kurtosis for normal distribution: -0.3073930877422071
Shop
Learn programming in R: courses
$FREE
Best Python online courses for 2022
$FREE
Best laptop for Fortnite
$399+
Best laptop for Excel
$
Best laptop for Solidworks
$399+
Best laptop for Roblox
$399+
Best computer for crypto mining
$499+
Best laptop for Sims 4
$
Latest questions
PythonStackOverflow
Common xlabel/ylabel for matplotlib subplots
1947 answers
PythonStackOverflow
Check if one list is a subset of another in Python
1173 answers
PythonStackOverflow
How to specify multiple return types using type-hints
1002 answers
PythonStackOverflow
Printing words vertically in Python
909 answers
PythonStackOverflow
Python Extract words from a given string
798 answers
PythonStackOverflow
Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?