Questions tagged [kurtosis]

Kurtosis is a statistical measure, which characterizes the extreme data (outlier) character of a distribution compared with the normal distribution. Positive (excess) kurtosis indicates a distribution that is more outlier-prone than a normal distribution. Negative (excess) kurtosis indicates a distribution that is less outlier-prone than a normal distribution.

Overview

From Wikipedia:

In probability theory and statistics, kurtosis (from Greek: κυρτός, kyrtos or kurtos, meaning "curved, arching") is a measure of the "tailedness" of the probability distribution of a real-valued random variable. In a similar way to the concept of skewness, kurtosis is a descriptor of the shape of a probability distribution and, just as for skewness, there are different ways of quantifying it for a theoretical distribution and corresponding ways of estimating it from a sample from a population. Depending on the particular measure of kurtosis that is used, there are various interpretations of kurtosis, and of how particular measures should be interpreted.

The standard measure of kurtosis, originating with Karl Pearson, is based on a scaled version of the fourth moment of the data or population. This number is related to the tails of the distribution, not its peak;[1] hence, the sometimes-seen characterization as "peakedness" is mistaken. For this measure, higher kurtosis is the result of infrequent extreme deviations (or outliers), as opposed to frequent modestly sized deviations.


Tag usage

Questions on tag should be about implementation and programming problems, not about the statistical or theoretical properties of the concept. Consider whether your question might be better suited to Cross Validated, the StackExchange site for statistics, machine learning and data analysis.

48 questions
-1
votes
1 answer

how to compute descriptive statistics; Skewness and Kurtosis for slected feature from dataset?

I need to find skewness and kurtosis for a selected feature from the data frame correctly in python. the target( y ) feature is a selected feature i need . import pandas as pd import numpy.random as rd data = pd.read_csv('data4filter2.csv') columns…
muth
  • 1
  • 3
-2
votes
2 answers

Calculte kurtosis and skewness using for loop

i'm trying to calculteskewness and kurtosis for different fields. I want to get in the end table with each field name. the kurtosis and the skewness. for that I have written the next code: for i in data_dis.columns: …
Reut
  • 1,555
  • 4
  • 23
  • 55
-2
votes
1 answer

calculate kurtosis for each sequence or intervall in array

I have an array with 1000(rows) values and I want to calculate for every 10 values the kurtosis in the order from the first value zero to 999 of my array. So, in the end, I would have 100 kurtosis values from the list. Then I want to put all the…
pynewb
  • 25
  • 1
  • 7
1 2 3
4