A quantile-quantile (QQ) plot can be used to compare a dataset to a particular distribution. QQ plots are often used to test whether the normality assumption holds for a sample.
```R
# Return a qq-plot for the normal distribution
qqnorm(data)
#
qqline(data)
```