How do you create a quantile-quantile plot for a numeric variable values against a theoretical distribution in R?
A. qqplot(values, dist)
B. geom_qqplot(mapping = aes(sample = values), dist)
C. qqnorm(values, dist)
D. create_qqplot(values, dist)
Answer: Option C
Join The Discussion