-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.R
35 lines (30 loc) · 1.23 KB
/
functions.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#### Function for ggsurvplot_combine #####
# store survplot object and choose functional argument (default is Survival Function)
nonparametricKurves <- function(fun=NULL) {
ggsurvplot_combine(kmfh.all, data=dat, conf.int=T,
legend.labs=c("KM", "Fleming-Harrington"), legend.title="Model",
fun=fun,
risk.table=F,
cumcensor=FALSE,
censor=FALSE,
linetype=c(1,1),
size = 0.3)
}
#### Function for Kaplan Meier Curves by Strata ####
### Storing survObject, labs= category description, Legend Title
kmGroupKurves <- function(labs,title,line=c(1,1),conf=T){
ggsurvplot(wide.fit, conf.int=conf,
legend.labs=labs, legend.title=title,
censor=F,
palette = "strata",
risk.table = T,
pval=TRUE,
pval.method = TRUE,
log.rank.weights = "S2",
risk.table.height=.25,
ylim=c(0,1),
xlim=c(0,30),
surv.median.line="hv",
linetype=line,
size = 0.5)
}