In section A1.3 you learnt about data types and data distributions. Many of the tests that we use for continuous variables assume that the data follow a Gaussian or normal distribution. You have learnt how to create a histogram and use this to assess if the data follow the appropriate distribution. But what do we do if they don’t?
In these situations it is often acceptable to ‘transform’ your variable. This means to apply a mathematical function to each observed value, and then analyse the transformed values. This is a perfectly valid and widely accepted approach to dealing with skewed data. You just need to take care to use it appropriately. For example, you must ensure that if you are comparing means between two or more groups, that you perform the same transformation on all groups in the analysis so that the means are still comparable. Also, you must make sure that you interpret the results of any statistical tests on transformed data appropriately. It is often best to transform any means and mean differences back into the original units.
The table below shows the most useful transformations to deal with different deviations from the normal distribution.
|
Form of data |
Transformation |
|
Slightly right-skewed |
Square root |
|
Moderately right-skewed |
Logarithmic |
|
Very right-skewed |
Reciprocal |
|
Left-skewed |
Square |
|
Counts |
Square root |
|
Proportions |
Arcsine square root |
If you have decided to use a transformation it is best to plot your raw data (histogram or Q-Q plot depending on your preference), create a new variable with the transformed data, and then plot the transformed variable in the same way to check that the transformation has had the desired effect.
Sometimes variable transformations do not help. For example, if the measures of central tendency are all at the very extreme values of a variable then it is unlikely that any transformation will be useful. In these cases, non-parametric tests may be preferred. We will cover when and how to use non-parametric tests in Module B3.
A1.6 PRACTICAL: R
In this example we are going to take the natural log (ln) of the variable HDL-C in the Whitehall FoSSA data set
The natural log is the log to the base of the constant e (also known as Euler’s number), which is approximately 2.718281828459.
If you are interested in why this number is so important, a quick Google of the term Euler’s number should suffice, but you do not need to know why we use this value in order to run this analysis. (NB: Euler’s number is not to be confused with Euler’s constant, which is a different thing entirely!)
Firstly, plot and inspect a histogram of the variable hdlc. Adding a normal curve might help to see what we are looking at.

To do this in R you write:
data$variable_log <- log(data$variable)
Sometimes variable transformations do not help. For example, if the measures of central tendency are all at the very extreme values of a variable then it is unlikely that any transformation will be useful. In these cases, non-parametric tests may be preferred.
Use this function to log transform the ‘hdlc’ variable. Now create a new histogram of your transformed variable. How does this compare to your original? Does this transformation help your data? What might you do differently?
Answer
Whitehall_fossa$hdl_log<- log(Whitehall_fossa$hdlc)
Then to look at the histogram we write:
hist(Whitehall_fossa$hdl_log, breaks=20)

You can see that the data are closer to following the normal curve in this histogram compared to the previous. In the first histogram the most common values (taller bars) are slightly outside of the normal curve to the left of the mean, and there is a more gradual slope on the right-hand side of the mean (peak of the normal curve). This means there are more values in the bins to the right of the mean than to the left of the mean. This is a (very) slight right skew.
In the histogram of the transformed data the highest points are closer to the mean, so this could be classed as a slight improvement, but we are more seeing some of the most common values slightly to the right of the mean, and a more gradual slop off to the left, so a very minimal left skew. This wouldn’t worry us if we saw a skew this slight in the raw data, but in transformed data this is an ‘over-correction’ and indicates that the log transformation might not be the best option for this variable. Referring back to the table at the top of the page, we would select the square root transformation here instead.
In reality, the original hdlc variable was quite close to normality, and a sufficiently large sample size that we would not be worried, but it is a good candidate to experiment on.
A1.6 PRACTICAL: Stata
In this example we are going to take the natural log (ln) of the variable HDL-C in the Whitehall FoSSA data set
The natural log is the log to the base of the constant e (also known as Euler’s number), which is approximately 2.718281828459.
If you are interested in why this number is so important, a quick Google of the term Euler’s number should suffice, but you do not need to know why we use this value in order to run this analysis. (NB: Euler’s number is not to be confused with Euler’s constant, which is a different thing entirely!)
Firstly, plot and inspect a histogram of the variable hdlc. Adding a normal curve might help to see what we are looking at.

To perform a transformation, type “help math functions” and you will see all the potential functions you can apply using the command “generate”. The setup is:
generate new_variable=function(old variable)
If we want to log transform the variable ‘hdlc’, we would type:
gen log_hdl=ln( hdlc)
Sometimes variable transformations do not help. For example, if the measures of central tendency are all at the very extreme values of a variable then it is unlikely that any transformation will be useful. In these cases, non-parametric tests may be preferred.
Use this function to log transform the ‘hdlc’ variable. Now create a new histogram of your transformed variable. How does this compare to your original? Does this transformation help your data? What might you do differently?
Answer
The resultant histogram of your log transformed data should look like this:

You can see that the data are closer to following the normal curve in this histogram compared to the previous. In the first histogram the most common values (taller bars) are slightly outside of the normal curve to the left of the mean, and there is a more gradual slope on the right-hand side of the mean (peak of the normal curve). This means there are more values in the bins to the right of the mean than to the left of the mean. This is a (very) slight right skew.
In the histogram of the transformed data the highest points are closer to the mean, so this could be classed as a slight improvement, but we are more seeing some of the most common values slightly to the right of the mean, and a more gradual slop off to the left, so a very minimal left skew. This wouldn’t worry us if we saw a skew this slight in the raw data, but in transformed data this is an ‘over-correction’ and indicates that the log transformation might not be the best option for this variable. Referring back to the table at the top of the page, we would select the square root transformation here instead.
In reality, the original hdlc variable was quite close to normality, and a sufficiently large sample size that we would not be worried, but it is a good candidate to experiment on.
A1.6 PRACTICAL: SPSS
In this example we are going to take the natural log (ln) of the variable HDL-C in the Whitehall FoSSA data set
The natural log is the log to the base of the constant e (also known as Euler’s number), which is approximately 2.718281828459.
If you are interested in why this number is so important, a quick Google of the term Euler’s number should suffice, but you do not need to know why we use this value in order to run this analysis. (NB: Euler’s number is not to be confused with Euler’s constant, which is a different thing entirely!)
Firstly, plot and inspect a histogram of the variable hdlc. Adding a normal curve might help to see what we are looking at.

To run the transformation
Select
Transform >> Compute Variable
Put the name of the new variable you want (log_hdlc) in the ‘Target Variable’ box.

Select the function Ln from the box on the bottom right titled ‘Function and Special Variables’ and move it up to the ‘Numeric Expression’ box. To save you scrolling through all of the functions, this is grouped within ‘Arithmetic’, so if you select that in the ‘Function group’ box directly above it reduced the number of choices in the list.
Select the name of your original variable (hdlc) from the left hand side, and move it across into the Numeric Expression to replace the question mark. On some occasions the question mark does not disappear when you move the variable into the expression. If this happens just delete it, as leaving it in will stop SPSS from creating the new variable.
Press OK to run, and your new variable will appear in the data and variable views.
Now create a new histogram of your transformed variable. How does this compare to your original? Does this transformation help your data? What might you do differently?
Answer
The resultant histogram of your log transformed data should look like this.

You can see that the data are closer to following the normal curve in this histogram compared to the previous. In the first histogram the most common values (taller bars) are slightly outside of the normal curve to the left of the mean, and there is a more gradual slope on the right-hand side of the mean (peak of the normal curve). This means there are more values in the bins to the right of the mean than to the left of the mean. This is a (very) slight right skew.
In the histogram of the transformed data the highest points are closer to the mean, so this could be classed as a slight improvement, but we are more seeing some of the most common values slightly to the right of the mean, and a more gradual slop off to the left, so a very minimal left skew. This wouldn’t worry us if we saw a skew this slight in the raw data, but in transformed data this is an ‘over-correction’ and indicates that the log transformation might not be the best option for this variable. Referring back to the table at the top of the page, we would select the square root transformation here instead.
In reality, the original hdlc variable was quite close to normality, and a sufficiently large sample size that we would not be worried, but it is a good candidate to experiment on.
Very fantastic. pls, can I get compiled materials (for reading)? specially downloadable pdf including the lecture ppt and syntax. or I am very happy if I can access the summarized common syntaxes.
Thank you!1
Hello
Thank you for this clear content.
Please, can you provide me an easy synthaxe for normal distribution on the Histogramm.
Kind Regards
Hi David,
Overlaying a Normal distribution is quite tricky and requires defining a Normal distribution from scratch and overlaying it on the plot. This isn’t usually necessary to make a decision, since a histogram is only a visualisation and as such, is subjective so you can use your judgement.
A better way to test for Normality if you are unsure is to use the Shapiro-Wilk test on your variable, or examine if the mean and median are close together, which should be the case if the data is Normally distributed.