我正在使用ggsurv,我的Kaplan-Meier表现很好。现在,我想调整y / x-scale的缩放比例,但是似乎所有命令都不起作用:
通常只需添加:+ coord_fixed(ratio = 3)即可
pl.test <- ggsurv(sf.test, CI = "def", plot.cens = FALSE, surv.col = c("blue", "black"),
cens.col = "gg.def", lty.est = 1,
lty.ci = 2, size.est = 0.25,
size.ci = size.est, cens.size =0.01, cens.shape = 5, back.white = TRUE,
xlab = "Time (d)", ylab = "Proportion", main = "Survial on prolonged ECLS", order.legend = "ON")
pl.test + ggplot2::coord_cartesian(xlim = c(28,450), ylim =c(0,1))+
scale_x_continuous(breaks = c(28,100,200,300,400))+
coord_fixed(ratio = 3) e.g. dont work
但是它返回: 坐标系已经存在。添加新的坐标系,它将取代现有的坐标系。
我想要的是x标度用于y长度的两倍。
为什么ggsurv不允许我使用添加项?