CommencerCommencer gratuitement

Survey-weighted scatter plots

In scatter plots, we can also account for the sampling design through the saturation of color or the transparency of the points. Let's see how these forms change the look of our scatter plot of height versus weight among 20 year olds.

Cet exercice fait partie du cours

Analyzing Survey Data in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Construct a scatter plot
ggplot(data = ___,
       mapping = aes(___)) + 
	geom_point() + 
    guides(___ = "none")
Modifier et exécuter le code