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?
Este ejercicio forma parte del curso
Inference for Numerical Data in R
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
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
___