One simple way is to plot several facets according to the grouping variable:
d %>% ggplot() + aes(x = hp, y = mpg) + geom_point() + facet_wrap(~ cyl)
Faceting is great, but it’s good to know the other technique as well.
A Fine Slice Of SQL Server
One simple way is to plot several facets according to the grouping variable:
d %>% ggplot() + aes(x = hp, y = mpg) + geom_point() + facet_wrap(~ cyl)
Faceting is great, but it’s good to know the other technique as well.