plotdata <- gather(data, key = moisture, value = range, 2:8) p3 <- ggplot(plotdata,aes(x=moisture,y=range,fill=累加次数))+ geom_bar(position="dodge",stat="identity")+ xlab("含水率%") + ylab("极差") + labs(fill="累加次数",title="TW=1500")+ theme_classic() ###TW=2000 ...
现在介绍ggplot2做分组箱线图,添加箱子的bar和均值的几个函数 stat_boxplot() 函数 stat_boxplot() 函数用来给箱子添加median ±1.5 IQR 的最大值和最小值的bar, 注意分组用的参数的设置position,根据图像大小设置bar间距width参数 stat_boxplot(mapping=aes(x=横坐标列,y=纵坐标列,fill=分组列), ##fill分...