The distributions are unimodal and bell shaped. If you were to put more breaks in the female height histogram, it might look like the mean mode is more centrally located instead of being slightly skewed to the right but it appears to be a normal distribution.
hist(fdims$hgt, probability = TRUE)
x <- 140:190
y <- dnorm(x = x, mean = fhgtmean, sd = fhgtsd)
lines(x = x, y = y, col = "blue")
Yes. The probability curve created by the female height is normally distributed.
Eyeballing the shape of the histogram is one way to determine if the data appear to be nearly normally distributed, but it can be frustrating to decide just how close the histogram is to the curve. An alternative approach involves constructing a normal probability plot, also called a normal Q-Q plot for “quantile-quantile”.
sim_norm
. Do all of the points fall on the line? How does this plot compare to the probability plot for the real data?All the points fall on the line except for a few outliers which are still fairly close to the line. Compared to the actual data, the simulated data looks less jagged but that it most likely due to measurements going to fewer decimal places than the simulation.
fdims$hgt
look similar to the plots created for the simulated data? That is, do plots provide evidence that the female heights are nearly normal?Yes. The simulated plots all look very similar to fdims$hgt. We can conclude that female heights are nearly normal.
wgtsim_norm <- rnorm(n = length(fdims$wgt), mean = fwgtmean, sd = fwgtsd)
qqnorm(wgtsim_norm)
qqline(wgtsim_norm)
At first glance, the observed female weight data appeared to be skewed to the right based on the ends of the Q-Q plot curving upwards. But after looking at the 10 simulated Q-Q plots based on the observed data, female weight appears to be normally distributed.
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
Note that normal probability plots C and D have a slight stepwise pattern.
Why do you think this is the case?
For plot C, the measurements of elbow diameter are small but the precision is lacking creating larger jumps between measurement and the observed stepwise pattern. For plot D, age is measured in years and not months or days so you had less precision as well.
kne.di
). Based on this normal probability plot, is this variable left skewed, symmetric, or right skewed? Use a histogram to confirm your findings.The upward curve of observations at the beginning and end of the line tells us that this is skewed to the right. This is confirmed by the histogram.