-
Notifications
You must be signed in to change notification settings - Fork 0
/
10-repos.Rmd
49 lines (43 loc) · 1.03 KB
/
10-repos.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# (PART) Repositories {-}
# WEEL universe
As of 2021-09-28, here's an overview of the repositories related to the
WEEL. If you have any edits or changes, please open an issue or message Alec.
```{r, echo = FALSE}
library(data.table)
library(reactable)
projects <- fread('data/projects.csv')
reactable(
projects[, .(
project = name,
namespace = namespace.path,
description,
url,
methods,
docs,
lab = lab_project,
thesis = thesis_project,
meta = meta_lab,
is_pkg = is_package,
targets = uses_targets
)],
defaultSorted = list('project' = 'asc'),
columns = list(
project = colDef(width = 150),
namespace = colDef(width = 130),
description = colDef(width = 250),
url = colDef(cell = function(value) {
htmltools::tags$a(href = value, target = "_blank", 'Link')
})
),
style = list(minWidth = 100, maxWidth = 1200),
filterable = TRUE,
searchable = TRUE,
defaultPageSize = 8,
highlight = TRUE,
resizable = TRUE,
bordered = TRUE,
striped = TRUE,
showPageSizeOptions = TRUE,
pageSizeOptions = c(4, 8, 12)
)
```