ANLY 502-90-Math
Assignment 4
# On Your Own
.Now let's consider some of the other variables in the body dimensions data set.
Using the figures at the end of the exercises, match the histogram to its normal probability plot. All of the variables have been standardized (first subtract the mean, then divide by the standard deviation), so the units won't be of any help.
If you are uncertain based on these figures, generate the plots in R to check. (B,C,D)
a. The histogram for female biiliac (pelvic) diameter ( bii.di ) belongs to normal probability plot letter ____.
b. The histogram for female elbow diameter ( elb.di ) belongs to normal probability plot letter ____.
c. The histogram for general age ( age ) belongs to normal probability plot letter ____.
d. The histogram for female chest depth ( che.de ) belongs to normal probability plot letter ____.
# a. Female biiliac (pelvic) diameter
par(mfrow = c(1, 2)) # Set up a 1x2 plotting grid
# Histogram
hist(fdims$bii.di, main = "Histogram - bii.di", xlab = "bii.di")
# Normal probability plot
qqnorm(fdims$bii.di)
qqline(fdims$bii.di)