ComeçarComece de graça

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 exercício faz parte do curso

Inference for Numerical Data in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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
  ___
Editar e executar o código