我想用下面的代码更改boxplot中的填充颜色,但代码颜色只会改变边框的颜色。
p = ggplot(data=concentration,aes(factor(status), con), ylim=c(0,0.15),cex.axis=1.5,cex.lab=15) +
stat_summary(fun.data=f, geom="boxplot", position="dodge",color='blue') +
ylab(expression(paste("Formaldehyde concentration"," (",mu,"g/",m^3,")"))) +
xlab("") +
ylim(0,200) #+
geom_boxplot(aes(fill = Condition))
如何更改填充颜色?
答案 0 :(得分:1)
您可以在此处查看编辑ggplot箱图的美学的所有方法:http://ggplot2.tidyverse.org/reference/geom_boxplot.html
在您的情况下,您想要更改填充:
set.seed(123)
concentration <- data.frame(status = c("Yes", "No"), con = rnorm(n = 30) + 10)
ggplot(data=concentration, aes(factor(status), con)) +
geom_boxplot(fill = "blue")