Test for average weight of babies
We'll wrap up inference on a single parameter of a numerical distribution by revisiting the ncbirths
dataset, specifically the weight
variable, indicating the birth weight of the baby. Do these data provide convincing evidence that the average birth weight of babies born in North Carolina is different than 7 pounds?
This exercise is part of the course
Inference for Numerical Data in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
n_replicates <- 1500
weight_mean_ht <- ncbirths %>%
# Specify weight as the response
___ %>%
# Set the hypothesis that weights are 7 pounds
___ %>%
# Generate 1500 bootstrap replicates
___ %>%
# Calculate the mean
___