Get startedGet started for free

Average number of doctor's visits

Next, we construct a bootstrap interval for the average number of doctor's visits during pregnancy.

This exercise is part of the course

Inference for Numerical Data in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Filter for rows with non-missing visits
ncbirths_complete_visits <- ncbirths %>%
  ___
  
# See the result
glimpse(ncbirths_complete_visits)
Edit and Run Code