服务热线
178 0020 3020
library(ggplot2)
library(ggpubr)
library(magrittr)
library(survminer)
library(survival)
fit<-survfit(Surv(time,status)~sex,data=lung)
ggsurvplot(fit,data=lung,color="sex",palette=c("red","blue"),title="R2-33",pval=TRUE,surv.median.line="hv",conf.int=TRUE,legend.title="SEX",legend.labs=c("Male","Female"),risk.table=TRUE,risk.table.col="sex",ncensor.plot=TRUE)
#color=”sex” 颜色根据sex区分
#palette 更改颜色
#pval=TRUE 图中显示P值
#conf.int=TRUE 图中显示置信区间
#surv.median.line=”hv” 中位线垂直方向、水平方向
#ncenso.plotr=TRUE
#无risk.table.col="sex",risk.table中数字会没有颜色
#使用ggtheme() 三个表的主题都会更换
附件