Range
The first thing you want to look at is the range of your data: from where to where does your data stretch? Does it start with small numbers? Large numbers? Does it run from negative to positive? All this is essential information that will help you to deal with your data.
Looking at the range will also help you to find errors in your data. Let’s say you are comparing body heights and that you’ve asked people to enter their size in centimetres. Say you find that your data’s values range from 127 to 622. There is clearly a mistake: 6m tall people are very rare, and the likelihood for you to have caught one is relatively small. You should go back to your data and check it.
What do you have to do to find your range? Simply go through your data and find the minimum and maximum value—the lowest and the highest, respectively. In a spreadsheet, you can do this with the formulas =MIN and =MAX.
Let’s say you have the following data (let’s take body sizes):
163.1 162.2 210.5 201.0 188.7 182.6 153.0 173.5 146.6 148.0
Question: What is the range of your dataset?
Hint: find the lowest number (minimum) and the highest number (maximum).
Answer: Our range is from: 146.6 to 210.5
