sina 图

graphics
ggplot2 extension
Published

November 2, 2024

Modified

November 2, 2024

(小提琴图 + 抖散图)= sina 图

Show the code
library(ggforce)


ggplot(mpg,aes(x = drv, y = hwy ))+
    geom_sina()

Show the code
ggplot(mpg,aes(x = drv, y = hwy ))+
    geom_violin()+
    geom_jitter(width = 0.25, size = 0.85)