From 57a389a15aef879da1f796b74d5048944aed7506 Mon Sep 17 00:00:00 2001 From: aduvermy <arnaud.duvermy@ens-lyon.fr> Date: Fri, 10 May 2024 14:17:18 +0200 Subject: [PATCH] modif vignettes & add docker v2.1.0 --- vignettes/02-tutorial.Rmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vignettes/02-tutorial.Rmd b/vignettes/02-tutorial.Rmd index b81f070..a01de3f 100644 --- a/vignettes/02-tutorial.Rmd +++ b/vignettes/02-tutorial.Rmd @@ -193,12 +193,12 @@ The area under the ROC curve (AUC) provides a single metric that summarizes the ```{r perf_mimic_pub2, eval=FALSE} ## -- actual/estimate comparison -resSimu$performances$byparams[3, c('description', 'R2', 'RMSE')] +resSimu$performances$byparams[3, c('description','R2','RMSE')] ``` ```{r perf_mimic_pub2_display, echo=FALSE, fig.align='center', fig.height=4, fig.width=7, message=FALSE, ,warning=FALSE} ## -- actual/estimate comparison -dt2display <- resSimu$performances$byparams[3, c('R2', 'RMSE')] +dt2display <- resSimu$performances$byparams[3, c('description','R2','RMSE')] kableExtra::kable(dt2display, row.names = FALSE ) %>% kableExtra::kable_styling(full_width = F, position = "center") @@ -417,7 +417,7 @@ resSimu$performances$byparams[3:4, c('description', 'R2', 'RMSE')] ```{r perf_mainX2_display, echo=FALSE, fig.align='center', fig.height=4, fig.width=7, message=FALSE, ,warning=FALSE} ## -- actual/estimate comparison -dt2display <- resSimu$performances$byparams[3:4, c('R2', 'RMSE')] +dt2display <- resSimu$performances$byparams[3:4, c('description', 'R2', 'RMSE')] rownames(dt2display) <- NULL kableExtra::kable(dt2display, row.names = FALSE) %>% kableExtra::kable_styling(full_width = F, position = "center") -- GitLab