如何在森林图中调整x轴

时间:2019-07-18 09:47:45

标签: r cox-regression survival forestplot

我目前正在尝试创建根据Cox回归分析得出的危险比森林图。森林图本身看起来不错,但是我想调整x轴,因为当前的价格变动位于相当任意的值。请参阅所附的林地图片和代码。

enter image description here

p = ggplot(data=RR_data,
           aes(x = Group,y = RiskRatio, ymin = LowerLimit, ymax = UpperLimit ))+
  geom_pointrange(aes(col=Group))+ theme_minimal() +
  geom_hline(aes(fill=Group),yintercept =1, linetype=2)+
  xlab('Immune cell population')+ ylab("Hazard Ratio (95% Confidence Interval)")+
  geom_errorbar(aes(ymin=LowerLimit, ymax=UpperLimit,col=Group),width=0.5,cex=1)+ 
  facet_wrap(~Condition,strip.position="left",nrow=9,scales = "free_y") +
  theme(plot.title=element_text(size=16,face="bold"),
        axis.text.y=element_blank(),
        axis.ticks.y=element_blank(),
        axis.text.x=element_text(face="bold"),
        axis.title=element_text(size=12,face="bold"),
        strip.text.y = element_text(hjust=0,vjust = 1,angle=180,face="bold"))+
  coord_flip()

0 个答案:

没有答案