24

以下是相关代码:

ggplot.3plus<-ggplot(summary.3plus, aes(x=sp1, y=fract.mean, fill=ForestAge)) + 
  geom_bar(position=position_dodge())+ coord_cartesian(ylim = c(1, 1.175))+
  geom_errorbar(aes(ymin=fract.mean-se, ymax=fract.mean+se),
                width=.2,                    # Width of the error bars
                position=position_dodge(.9))

ggplot.3plus<- ggplot.3plus + theme(axis.title.x = element_text(colour = "red"))

可以看到,通过最后一行代码,我可以改变坐标轴标题的颜色,但不能改变坐标轴LABELS的颜色。

4

1 回答 1

39

关于什么

ggplot.3plus + theme(axis.text.x=element_text(colour="red"))

有关更多主题详细信息,请参阅ggplot2 wiki 页面

于 2012-09-24T15:25:05.587 回答