kable knitting

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-04-23 15:16:37 +02:00
parent 7b1b4ddf26
commit 887a51cb9c
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -111,7 +111,7 @@ c("continuous", "dichotomous", "categorical") |>
}) |>
dplyr::bind_rows() |>
# toastui::datagrid(filters=TRUE,theme="striped") |>
kableExtra::kable()
knitr::kable()
```
Export the plots directly from the sidebar with easily adjusted plot dimensions for your next publication.
@ -140,7 +140,7 @@ c("continuous", "dichotomous", "categorical") |>
}) |>
dplyr::bind_rows() |>
# toastui::datagrid(filters=TRUE,theme="striped") |>
kableExtra::kable()
knitr::kable()
```
### Table

View file

@ -28,7 +28,7 @@ data_types() |> purrr::imap(\(.x,.i){
dplyr::bind_cols("type"=.i,.x,.name_repair = "unique_quiet")
}) |> dplyr::bind_rows() |>
setNames(c("Data type","Description","Data classes included")) |>
kableExtra::kable()
knitr::kable()
```
Categorising data in this way makes sense when making choices on how to evaluate and analyse data. This is used throughout the ***FreesearchR*** app to simplify data handling.