The concept of skewness is baked into our way of thinking. When we look at a visualization, our minds intuitively discern the pattern in that chart, whether we are data scientists or beginners working on a python dataset.
As you might already know, India has more than 50% of its population below the age of 25 and more than 65% below the age of 35. If you plot the distribution of the age of the population of India, you will find that there is a hump on the left side of the distribution, and the right side is comparatively planar. In other words, we can say that there’s a skew toward the end, right?
So even if you haven’t read up on skewness as a data science or analytics professional, you have interacted with the concept on an informal note. And it’s a pretty easy topic in statistics – and yet a lot of folks skim through it in their haste to learn other seemingly complex data science concepts. To me, that’s a mistake. Skewness is a fundamental descriptive statistics concept that everyone in data science and analytics needs to know. In this tutorial, we’ll discuss the concept of skewness in the easiest way possible, one of the important concepts in statistics for data science. So buckle up because you’ll learn a concept that you’ll value during your entire data science career. In essence, understanding what is skewness is essential for meaningful data analysis and interpretation.
In this article you also get to learn about positive skewness and negative skewness and their fundamentals.
Skewness is the measure of the asymmetry of an ideally symmetric probability distribution and is given by the third standardized moment. If that sounds way too complex, don’t worry! Let me break it down for you.
In simple words, skewness in statistics is the measure of how much the probability distribution of a random variable deviates from the normal distribution. Now, you might be thinking – why am I talking about normal distribution here?
Well, the normal distribution is the probability distribution without any skewness. You can look at the image below, which shows symmetrical distribution that’s a normal distribution, and you can see that it is symmetrical on both sides of the dashed line. Apart from this, there are two types of skewness:
The probability distribution with its tail on the right side is a positively skewed distribution, and the one with its tail on the left side is a negatively skewed distribution. If you’re finding the above figures confusing, that’s alright. We’ll understand this in more detail later.
Skewness in statistics is demonstrated on a bell curve when data points are not distributed symmetrically to the left and right sides of the median on a bell curve. If the bell curve is shifted to the left or the right, it is said to be skewed. Before that, let’s understand why this is such an important concept for you as a data science professional.
There are three main types of skewness in statistics:
Right Skew: Tail extends to the right, most data clustered on the left. (mean > median)
Left Skew: Tail extends to the left, most data clustered on the right. (mean < median)
Zero Skew: Perfectly symmetrical distribution, with mean, median, and mode all equal.
Now, we know that skewness of data is the measure of the lack of symmetry, and its types are distinguished by the side on which the tail of probability distribution lies. But why is knowing the skewness of the data important?
First, linear models work on the assumption that the distribution of the independent variable and the target variable are similar. Therefore, knowing about the skewness in statistics of data helps us create better linear models.
Secondly, let’s take a look at the below distribution. It is the distribution of horsepower of cars:
You can clearly see that the above distribution is positively skewed. Now, let’s say you want to use this as a feature for the model that will predict the mpg (miles per gallon) of a car.
Since our data is positively skewed here, it means that it has a higher number of data points having low values, i.e., cars with less horsepower. So when we train our model on this data, it will perform better at predicting the mpg of cars with lower horsepower as compared to those with higher horsepower.
Also, skewness tells us about the direction of outliers. You can see that our distribution is positively skewed, and most of the outliers are present on the right side of the distribution.
Note: The skewness does not tell us about the number of outliers. It only tells us the direction.
Now we know why skewness of data is important, before understanding distributions, let us quickly understand what the central limit theorem is.
The central limit theorem says that the sampling distribution of the mean will always be normally distributed as long as extreme values or the sample size is large enough. Regardless of whether the population has a normal, Poisson, binomial, or any other distribution, the sampling distribution of the mean will be normal.
Hypothesis Testing uses the Central Limit Theorem. Using the Central Limit Theorem, we can extend the approach employed in Single Sample Hypothesis Testing for normally distributed populations to those that are not normally distributed.
Yes, we’re back again with the normal distribution. It is used as a reference for determining the skewness of a distribution. As I mentioned earlier, the ideal normal distribution is the probability distribution with almost no skewness. It is nearly perfectly symmetrical. Due to this, the value of skewness for a normal distribution is zero or zero skewness.
But why is it nearly perfectly symmetrical and not absolutely symmetrical?
That’s because, in reality, no real word data has a perfectly normal distribution. Therefore, even the value of skewness is not exactly zero; it is nearly zero. Although the value of zero is used as a reference for determining the skewness of a distribution.
You can see in the above image that the same line represents the mean, median, and mode. It is because the mean, median, and mode of a perfectly normal distribution are equal.
So far, we’ve understood the skewness of normal distribution using a probability or frequency distribution. Now, let’s understand it in terms of a boxplot because that’s the most common way of looking at a distribution in the data science space.
The above image is a boxplot of symmetric distribution. You’ll notice here that the distance between Q1 and Q2 and Q2 and Q3 is equal, i.e.:
But that’s not enough to conclude if a distribution is skewed or not. We also take a look at the length of the whisker; if they are equal, then we can say that the distribution is symmetric, i.e., it is not skewed.
It’s now time to learn about the two types of skewness which we discussed earlier. Let’s start with positive skewness.
A positive skewness is the right-skewed distribution with the long tail on its right side. The value of skewness of data for a positively skewed distribution is greater than zero. As you might have already understood by looking at the figure, the value of the mean is the greatest one, followed by the median and then by mode.
So why is this happening?
Well, the answer to that is that the skewness of the data distribution is on the right; it causes the mean to be greater than the median and eventually move to the right. Also, the mode occurs at the highest frequency of the distribution, which is on the left side of the median. Therefore, the measure of central tendencies is mode < median < mean.
In the above boxplot, you can see that Q2 is present nearer to Q1. This represents a positively skewed distribution. In terms of quartiles, it can be given by:
In this case, it was very easy to tell if the data was skewed or not. But what if we have something like this:
Here, Q2-Q1 and Q3-Q2 are equal, and yet the distribution is positively skewed. The keen-eyed among you will have noticed the length of the right whisker is greater than the left whisker. From this, we can conclude that the data is positively skewed.
So, the first step is always to check the equality of Q2-Q1 and Q3-Q2. If that is found equal, then we look for the length of the whiskers.
Note: A high level of skewness or highly skewed data can generate misleading results from statistical tests. Extreme positive skewness in statistics is not desirable for a distribution.
Source: Wikipedia
As you might have already guessed, a negatively skewed distribution is the left-skewed distribution with the long tail on its left side. The value of skewness for a negatively skewed distribution is less than zero. You can also see in the above figure that the measure of central tendencies is mean < median < mode.
In the boxplot, the relationship between quartiles for a negative skewness is given by:
Similar to what we did earlier, if Q3-Q2 and Q2-Q1 are equal, then we look for the length of whiskers. And if the length of the left whisker is greater than that of the right whisker, then we can say that the data is negatively skewed.
Pearson developed two methods to find skewness in a sample.
Note: There isn’t an Excel function to find Pearson’s coefficient of skewness. In the descriptive statistics area of the data analysis tool, skewness of data is calculated by using the third power of deviations around the mean. This is different from Pearson’s coefficient of skewness, which uses either the mode or the mean.
Since you know how much the skewed data can affect our machine learning model’s predicting capabilities, it is better to transform the skewed data into normally distributed data. Here are some of the ways you can transform your skewed data:
Note: The selection of transformation depends on the statistical characteristics of the data.
Skewness is a measure of lack of symmetry. It is a shape parameter that characterizes the degree of asymmetry of a distribution. A distribution is said to be positively skewed with a degree of skewness greater than 0 when the tail of a distribution is toward the high values indicating an excess of low values. Conversely, it is negatively skewed with a degree of skewness less than 0 (Sk<0)when the tail of the distribution is toward the low values indicating an excess of high values.
Hope you understand and get understanding about the skewness and positive skewness we have given all the information so that you wil able to clear yor doubts.
A. Both terms describe the same distribution type where the tail is longer on the right side, indicating more values are concentrated on the left.
A. Positive skewness values indicate a distribution tailing off to the right, while negative skewness values indicate a distribution tailing off to the left.
A. In a positively skewed distribution, the mean is greater than the median, which is greater than the mode (mean > median > mode).
A. A positive coefficient of skewness of data indicates that the distribution has a longer right tail, suggesting a higher frequency of lower values.
I'd be curious your thoughts on the impact of assymmetry on linear modeling without the random component being normal (e.g. logistic regression) or non linear modeling (e.g. NN). 95% of what I do isn't the simple linear model and I know that most modeling methods don't assume symmetry... But do they still benefit from transformations that make them more symmetrical?
Evening Abhishek. Thanks for an informative and simplified explanation of data analytics. As HR performance management specialist, I am often challenged why performance management distribution curves are tilted and skewed to the right and not asymmetric as many of my colleagues would expect. For instance, in a four bucket rating system (Below Expectation, Meet Expectation, Exceed Expectation and Exceptional Performance). A distribution curve of individual ratings always tend to tilt and skew to the right. When challenged about the curve's behaviour, my response has always been along the lines of saying: For a curve to be asymmetrical, your data needs to meet two conditions. Firstly your data must be sufficient and lastly it must be randomly selected. Now, in all instances data was sufficient (2500 - 3500 employees). So the first condition was met. The second is not met because companies do not employ people at random. Companies recruit, select and employ suitably qualified employees. Hence the shape and slope of the curve. Do you agree with this reasoning? Your comment will be appreciated.
Good job! It's very simple article for understanding and author has done this on highest mark!
That's important in distribution detection.
Very nice explanation... Thanks for the article
good work
Nice article, but you would have mentioned first, the values of determination for normalised data; second, in case of non normalised data, how to modify or convert non normalised data to normalised data.
Great article..... Fundamental is always important.....
Nice, well explained
Well explained. I would highly appreciate a follow-up article on transformation from skewed to normally distributed data
i loved this article.
Very helpful, my question is if you have both positive and negative skew in one skew in one data set, which is the prepared option to use? is it ,the mean, mode or median
Great, clear instruction on skew and visualization! Thank you!
nice, very easy to understand
Very well explained. Thanks for this.