Use of color in scatter plots
We often use the hue of color in a scatter plot to represent categories of a categorical variable. Let's add Gender
to our scatter plots.
Este ejercicio forma parte del curso
Analyzing Survey Data in R
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Add gender to plot
ggplot(data = NHANES20,
mapping = aes(___)) +
geom_point(___) +
guides(___ = "none")