

Discover more from Daily Dose of Data Science
Log transform is commonly used to eliminate skewness in data.
Yet, it is not always the ideal solution for eliminating skewness.
It is important to note that log transform:
Does not eliminate left-skewness.
Only works for right-skewness, that too when the values are small and positive.
This is also evident from the image above.
It is because the log function grows faster for lower values. Thus, it stretches out the lower values more than the higher values.
Thus,
In case of left-skewness:
The tail exists to the left, which gets stretched out more than those to the right
Thus, skewness isn't affected much.
In case of right-skewness:
Majority of values and peak exists to the left, which get stretched out more.
However, the log function grows slowly when the values are large. Thus, the impact of stretch is low.
There are a few things you can do:
See if transformation can be avoided as it inhibits interpretability.
If not, try box-cox transform. It is often quite effective, both for left-skewed and right-skewed data. You can use it using Scipy’s implementation: Scipy docs.
👉 Over to you: What are some other ways to eliminate skewness?
👉 If you liked this post, don’t forget to leave a like ❤️. It helps more people discover this newsletter on Substack and tells me that you appreciate reading these daily insights. The button is located towards the bottom of this email.
👉 Read what others are saying about this post on LinkedIn.
👉 Tell the world what makes this newsletter special for you by leaving a review here :)
👉 If you love reading this newsletter, feel free to share it with friends!
Find the code for my tips here: GitHub.
I like to explore, experiment and write about data science concepts and tools. You can read my articles on Medium. Also, you can connect with me on LinkedIn and Twitter.