# Range Tells us the spread of our data, and the formula is simple, the largest value minus the smallest value tells you the range in which your values will fall across a given axis. The range is an easy calculation to perform but it is sensitive to outliers # Code ```r max(x) - min(x) ```