Best practices voor visualisaties in R
Nick Strayer
Instructor

Beeswarmplots

Violinplots

geom_beeswarm() in het ggbeeswarm-pakket.library(ggbeeswarm)
ggplot(data, aes(y = y, x = group)) +
geom_beeswarm(color = 'steelblue')



geom_boxplot() door geom_violin().ggplot(data, aes(y = y, x = group)) +
geom_violin(fill = 'steelblue')



Best practices voor visualisaties in R