With the help of
statsmodels.robust_kurtosis() method, we can calculate the four kurtosis value by using
statsmodels.robust_kurtosis() method.
👁 Image
Syntax : statsmodels.robust_kurtosis(numpy_array)
Return : Return four value of kurtosis i.e kr1, kr2, kr3 and kr4.
Example #1 :
In this example we can see that by using
statsmodels.robust_kurtosis() method, we are able to get the four kurtosis value of a numpy array by using this method.
Output :
(-1.3893422240232831, -0.17059511548521722, -0.9698425074861872, -1.218346951670164)
Example #2 :