mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-09-12 01:49:39 +02:00
kable knitting
This commit is contained in:
parent
7b1b4ddf26
commit
887a51cb9c
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue