我使用以下代码基于之前的帖子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("")
答案 0 :(得分:2)
要更改轴和图例外观,您应该将theme()
添加到地块中。
+ theme(axis.text=element_text(face="bold"),
legend.text=element_text(face="bold"))
要使广泛的广告在ize=1.5
调用中添加geom_pointrange()
。