ComenzarEmpieza gratis

Tying it all together

Let's take a new modeling example from start to finish!

Let's build a model to predict, BPSysAve, a person's systolic blood pressure reading, using BPDiaAve, a person's diastolic blood pressure reading and Diabetes, whether or not they were diagnosed with diabetes.

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.

# Plot BPDiaAve and BPSysAve by Diabetes and include trend lines
drop_na(NHANESraw, Diabetes) %>%
ggplot(mapping = aes(___)) + 
    geom____(alpha = 0.2) + 
  	guides(size = "none") + 
    geom____(___, se = FALSE, mapping = aes(___))
Editar y ejecutar código