I know that left and right skewness means it has a long tail on either the left(left skewness) or right(right skewness).
However, the example below is an example of right skewness.
data = pd.DataFrame({
"Income": [15000, 22000, 30000, 35000, 42000, 50000, 65000, 78000, 120000, 250000]
})
sns.distplot( data['Income'] , color="skyblue", label="Sepal Length")
Now my understanding of right skewness is fewer data points on the increasing value of the x-axis. So is my understanding correct? and how do I fix this chart to be a normal distribution?
AFAIK, using central limit theorem I should be able to convert any shape to standard normal distribution but it requires a minimum sample size of 30. So in my case is there any other way or adding more data points is the only way?

