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?
Diese Übung ist Teil des Kurses
Inference for Numerical Data in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
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
___