R | 使用ggplot绘制对比箱线图

绘制对比箱线图

  • 1 单独测试
  • 2 封装成函数
  • 3 总结

1 单独测试

library(ggplot2)
p<-ggplot(data=df_plot, aes(x=label,y=score))+
  geom_boxplot(aes(fill=label))+
  theme(legend.position = 'none', title = element_text(family = 'STKaiti'), # 设置不要旁边的那个解释框
        axis.title.x = element_text(family = 'STKaiti'), # 字体大小格式设置
        axis.title.y = element_text(family = 'STKaiti', size = 12, face = 'bold'),
        axis.text.x = element_text(family = 'STKaiti', size = 12, face = 'bold'))+
  labs(x="",y="得分", main = "")
  # 横轴纵轴标题设置
p

R | 使用ggplot绘制对比箱线图_第1张图片

2 封装成函数

library(ggplot2)
PlotGGBox = function(df, label, name, y_name){

# df表示数据框
# label表示按这个类别进行分类绘制对比箱线图
# name表示和分类变量对比的数值型变量名称 如果单独不行就带$符号
# y_name表示纵轴的显示

  p<-ggplot(data=df, aes(x=label,y=name))+
    geom_boxplot(aes(fill=label))+
    theme(legend.position = 'none', title = element_text(family = 'STKaiti'),
          axis.title.x = element_text(family = 'STKaiti'),
          axis.title.y = element_text(family = 'STKaiti', size = 12, face = 'bold'),
          axis.text.x = element_text(family = 'STKaiti', size = 12, face = 'bold'))+
    labs(x="",y=y_name)
  p
}
PlotGGBox(df_plot, label, score, "得分")

R | 使用ggplot绘制对比箱线图_第2张图片

3 总结

  • 主要是记录如何绘制对比箱线图,因为过几天代码就忘了,写在博客记录一下!

你可能感兴趣的:(R)