From 7ebe764ce99913620f151cc1ca3a84953c3ea2a9 Mon Sep 17 00:00:00 2001 From: Louis Chih-Ming Lee Date: Wed, 20 May 2026 05:20:44 +0200 Subject: [PATCH] update format --- slides.Rmd | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/slides.Rmd b/slides.Rmd index 024b4b4..3c7644a 100644 --- a/slides.Rmd +++ b/slides.Rmd @@ -1,5 +1,5 @@ --- -title: Slides +title: "Slides" execute: cache: true freeze: auto @@ -491,20 +491,19 @@ find.best.surv(included) ``` ```{r} -surv <- Surv(follow.up, death) ~ tx.type + age.rec + hla.match -fit.cox.model(surv, 3) -surv <- Surv(follow.up, death) ~ tx.type + age.rec + age.donor -fit.cox.model(surv, 3) -surv <- Surv(follow.up, death) ~ tx.type + age.rec + cold.isc -fit.cox.model(surv, 3) -surv <- Surv(follow.up, death) ~ tx.type + age.rec + year -fit.cox.model(surv, 3) -surv <- Surv(follow.up, death) ~ tx.type + age.rec + sex -fit.cox.model(surv, 3) +# surv <- Surv(follow.up, death) ~ tx.type + age.rec + hla.match +# fit.cox.model(surv, 3) +# surv <- Surv(follow.up, death) ~ tx.type + age.rec + age.donor +# fit.cox.model(surv, 3) +# surv <- Surv(follow.up, death) ~ tx.type + age.rec + cold.isc +# fit.cox.model(surv, 3) +# surv <- Surv(follow.up, death) ~ tx.type + age.rec + year +# fit.cox.model(surv, 3) +# surv <- Surv(follow.up, death) ~ tx.type + age.rec + sex +# fit.cox.model(surv, 3) ``` -``` ---