download.file("http://www.openintro.org/stat/data/bdims.RData", destfile = "bdims.RData")
load("bdims.RData")
mdims <- subset(bdims, sex == 1)
fdims <- subset(bdims, sex == 0)
a. The histogram for female biiliac (pelvic) diameter (`bii.di`) belongs
to normal probability plot letter B.
b. The histogram for female elbow diameter (`elb.di`) belongs to normal
probability plot letter C.
c. The histogram for general age (`age`) belongs to normal probability
plot letter D.
d. The histogram for female chest depth (`che.de`) belongs to normal
probability plot letter A.
histQQmatch
#the eval=FALSE makes knitr show the code but it doesn't evaluate it in the html document.
#Show the code you used in order to match the qqplots here
qqnorm(fdims$bii.di)
qqline(fdims$bii.di)
When the data was reported, people likely only reported whole number values, as opposed to the x-axis, which is trying to create a continuous data set, and as a result creates a bit of a step pattern.
kne.di). Based on this normal probability plot, is this variable left skewed, symmetric, or right skewed? Use a histogram to confirm your findings.qqnorm(fdims$kne.di)
qqline(fdims$kne.di)
hist(fdims$kne.di)
Looking at the probability plot it’s rather right-skewed, and this can also be shown in the histogram.