-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10-repos.Rmd
52 lines (46 loc) · 1.04 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
50
51
52
# (PART) Repositories {-}
# WEEL universe
As of 2024-12-02, 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/repos.csv')
reactable(
projects[, .(
project = name,
namespace,
description,
created_at,
updated_at,
url,
homepage,
lab_project,
personal_project,
workshops_and_colearning,
methods,
meta_lab,
is_package,
uses_targets
)],
defaultSorted = list('updated_at' = 'desc'),
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)
)
```