修改ggplot中的轴

时间:2013-08-14 12:08:29

标签: r ggplot2

我使用以下代码基于之前的帖子How to create odds ratio and 95 % CI plot in R来生成下面发布的数字。我想要: 1)使x和y轴以及图例变为粗体 2)增加线条的粗细

我怎么能在ggplot中做到这一点?

ggplot(alln, aes(x = apoll2, y = increase, ymin = l95, ymax = u95)) + geom_pointrange(aes(col = factor(marker)), position=position_dodge(width=0.50)) + 
    ylab("Percent increase & 95% CI") + geom_hline(aes(yintercept = 0)) + scale_color_discrete(name = "Marker") + xlab("")

enter image description here

1 个答案:

答案 0 :(得分:2)

要更改轴和图例外观,您应该将theme()添加到地块中。

+ theme(axis.text=element_text(face="bold"),
        legend.text=element_text(face="bold"))

要使广泛的广告在ize=1.5调用中添加geom_pointrange()