update format

This commit is contained in:
Louis Chih-Ming Lee 2026-05-20 05:20:44 +02:00
parent 613cdc34f4
commit 7ebe764ce9

View file

@ -1,5 +1,5 @@
--- ---
title: Slides title: "Slides"
execute: execute:
cache: true cache: true
freeze: auto freeze: auto
@ -491,20 +491,19 @@ find.best.surv(included)
``` ```
```{r} ```{r}
surv <- Surv(follow.up, death) ~ tx.type + age.rec + hla.match # surv <- Surv(follow.up, death) ~ tx.type + age.rec + hla.match
fit.cox.model(surv, 3) # fit.cox.model(surv, 3)
surv <- Surv(follow.up, death) ~ tx.type + age.rec + age.donor # surv <- Surv(follow.up, death) ~ tx.type + age.rec + age.donor
fit.cox.model(surv, 3) # fit.cox.model(surv, 3)
surv <- Surv(follow.up, death) ~ tx.type + age.rec + cold.isc # surv <- Surv(follow.up, death) ~ tx.type + age.rec + cold.isc
fit.cox.model(surv, 3) # fit.cox.model(surv, 3)
surv <- Surv(follow.up, death) ~ tx.type + age.rec + year # surv <- Surv(follow.up, death) ~ tx.type + age.rec + year
fit.cox.model(surv, 3) # fit.cox.model(surv, 3)
surv <- Surv(follow.up, death) ~ tx.type + age.rec + sex # surv <- Surv(follow.up, death) ~ tx.type + age.rec + sex
fit.cox.model(surv, 3) # fit.cox.model(surv, 3)
``` ```
```
--- ---