📜  rstudio 箱线图着色 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:40.538000             🧑  作者: Mango

代码示例1
df %>% ggplot(aes(x=age_group, y=height, fill=age_group)) + 
  geom_boxplot(width=0.5,lwd=1)+
  labs(subtitle="Filling Boxplot with Colors by a Variable")