Median lengths of pregnancies for smoking and non-smoking mothers
Let's turn our attention to another variable, weeks
, indicating the length of the pregnancy. Construct a bootstrap interval for the difference in median lengths of pregnancies of smoker and non-smoker mothers.
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.
# Filter for non-missing habit & non-missing weeks
ncbirths_complete_habit_weeks <- ncbirths %>%
___