ComeçarComece de graça

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

Analyzing Survey Data in R

Ver curso

Exercício interativo prático

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

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