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?
Cet exercice fait partie du cours
Inference for Numerical Data in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de 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
___