R में Visualization की Best Practices
Nick Strayer
Instructor

Beeswarm plots

Violin plots

ggbeeswarm पैकेज में geom_beeswarm() के रूप में उपलब्ध।library(ggbeeswarm)
ggplot(data, aes(y = y, x = group)) +
geom_beeswarm(color = 'steelblue')



geom_boxplot() को geom_violin() से बदलें।ggplot(data, aes(y = y, x = group)) +
geom_violin(fill = 'steelblue')



R में Visualization की Best Practices