ANLY 502-90-Math-Assignment 4

.docx

School

Geneva College *

*We aren’t endorsed by this school

Course

502

Subject

Mathematics

Date

Feb 20, 2024

Type

docx

Pages

4

Uploaded by LieutenantInternet8020

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)
# b. Female elbow diameter par(mfrow = c(1, 2)) # Reset the plotting grid # Histogram hist(fdims$elb.di, main = "Histogram - elb.di", xlab = "elb.di") # Normal probability plot qqnorm(fdims$elb.di) qqline(fdims$elb.di) # c. General age par(mfrow = c(1, 2)) # Reset the plotting grid # Histogram hist(fdims$age, main = "Histogram - age", xlab = "age") # Normal probability plot qqnorm(fdims$age) qqline(fdims$age) # d. Female chest depth par(mfrow = c(1, 2)) # Reset the plotting grid # Histogram hist(fdims$che.de, main = "Histogram - che.de", xlab = "che.de") # Normal probability plot qqnorm(fdims$che.de) qqline(fdims$che.de)
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help