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"))

コードの最後の行で、軸のタイトルの色を変更できますが、軸のラベルの色は変更できないことがわかります。

4

1 に答える 1

39

どうですか

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

テーマの詳細については、ggplot2wikiページを参照してください。

于 2012-09-24T15:25:05.587 に答える