ComenzarEmpieza gratis

Tying it all together!

Now let's switch to a new question to practice some of the skills we learned in this chapter. Let's investigate whether or not the total cholesterol varies, on average, between physically active and inactive Americans.

Este ejercicio forma parte del curso

Analyzing Survey Data in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio completando el código de muestra.

# Find means of total cholesterol by whether or not active 
out <- ___(formula = ___,
           by = ___, 
           design = NHANES_design,
           FUN = ___, 
           na.rm = TRUE, 
           keep.names = FALSE)
Editar y ejecutar código