Understanding Skewness in Data and Its Impact on Data Analysis (Updated 2024)

Abhishek Sharma 19 Dec, 2023 • 9 min read

Introduction

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.

understanding skewness in an easy way
Learning Objectives

  • You’ll learn about skewness, its types, and its importance in the field of data science.
  • You will learn what the coefficient of skewness is and how to calculate it.
  • Lastly, you will learn how we can transform skewed data.

What Is Skewness?

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 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:

  • Positive Skewness
  • Negative Skewness
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 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.

Why Is Skewness Important?

Now, we know that skewness 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 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:

positively skewed distribution of auto horsepower

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 is important, before understanding distributions, let us quickly understand what the central limit theorem is.

Central Limit Theorem

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.

What Is Symmetric/Normal Distribution?

Symmetric/Normal distribution,Positive skewness

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.

normal distribution zero skewness boxplot

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.:

boxplot quartile normal distribution

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.

Understanding Positively Skewed Distribution | Positive Skewness

Positive Skewness, Distribution

A positive skewness is the right-skewed distribution with the long tail on its right side. The value of skewness 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.

positive skewness boxplot

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:

boxplot quartile positive skewness

In this case, it was very easy to tell if the data was skewed or not. But what if we have something like this:

positive skewness whiskers boxplot

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 is not desirable for a distribution.

Understanding Negatively Skewed Distribution | Negative Skewness

negatively skewed 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.

negative skewness boxplot

In the boxplot, the relationship between quartiles for a negative skewness is given by:

boxplot quartile negative skewness

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.

negative skewness whiskers boxplot

Coefficient of Skewness

Pearson developed two methods to find skewness in a sample.

  1. Pearson’s Coefficient of Skewness using mode.
    SK1= Mean- mode/ sd
    where sd is the standard deviation for the sample.
  2. Pearson’s Coefficient of Skewness using the median.
    SK2=3(mean-median)/sd
    where sd is the standard deviation for the sample. It is generally used when the mode is unknown.

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 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.

How Do We Transform Skewed Data?

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:

  • Power Transformation
  • Log Transformation
  • Exponential Transformation

Note: The selection of transformation depends on the statistical characteristics of the data.

Conclusion

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.

Key Takeaways

  • Skewness is a measure of the lack of symmetry in a distribution. A distribution is asymmetrical when its left and right sides are not mirror images.
  • In this article, we covered the concept of skewness and learned the difference between positively skewed and negatively skewed distribution.
  • We can transform skewed data using Power, Log, and Exponential Transformations.

Frequently Asked Questions

Q1. What is the skewness of data in statistics?

A. Skewness is a measure of lack of symmetry; it measures the deviation of the given distribution.

Q2. What are the advantages of skewness?

A. Skewness, along with kurtosis, measures the performance. The advantage of measuring skewness is that it considers the extreme distribution.

Q3. What is the purpose of measuring skewness for a dataset?

A. Skewness judges the likelihood of events of a probability distribution.

Q4. What is positive skewness?

A. A positively skewed distribution is the right-skewed distribution with the long tail on its right side. The value of skewness for a positively skewed distribution is greater than zero.

Abhishek Sharma 19 Dec 2023

He is a data science aficionado, who loves diving into data and generating insights from it. He is always ready for making machines to learn through code and writing technical blogs. His areas of interest include Machine Learning and Natural Language Processing still open for something new and exciting.

Frequently Asked Questions

Lorem ipsum dolor sit amet, consectetur adipiscing elit,

Responses From Readers

Clear

Jerad
Jerad 06 Jul, 2020

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?

Steve Bogatsu
Steve Bogatsu 07 Jul, 2020

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.

Sergii
Sergii 07 Jul, 2020

Good job! It's very simple article for understanding and author has done this on highest mark!

Seyed
Seyed 08 Jul, 2020

That's important in distribution detection.

Ashok
Ashok 09 Jul, 2020

Very nice explanation... Thanks for the article

mugo
mugo 10 Jul, 2020

good work

Dr Datrika Venkata Madhusudan Rao
Dr Datrika Venkata Madhusudan Rao 10 Jul, 2020

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.

S.Debroy
S.Debroy 12 Jul, 2020

Great article..... Fundamental is always important.....

Martins
Martins 14 Jul, 2020

Nice, well explained

Peter
Peter 15 Jul, 2020

Well explained. I would highly appreciate a follow-up article on transformation from skewed to normally distributed data

Aashish Rana
Aashish Rana 15 Jan, 2022

i loved this article.

suleiman
suleiman 29 May, 2022

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

Gwen
Gwen 15 Nov, 2022

Great, clear instruction on skew and visualization! Thank you!

Abdulrahman Muhammad Bello
Abdulrahman Muhammad Bello 12 Mar, 2023

nice, very easy to understand

Abha
Abha 19 Dec, 2023

Very well explained. Thanks for this.

Related Courses

image.name
0 Hrs 27 Lessons
4.86

Pandas for Data Analysis in Python

Free

Machine Learning
Become a full stack data scientist

  • [tta_listen_btn class="listen"]