-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrcode_bytype.qmd
More file actions
80 lines (64 loc) · 1.57 KB
/
rcode_bytype.qmd
File metadata and controls
80 lines (64 loc) · 1.57 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
pagetitle: "EHM-Lab R Code by Type"
title: ""
toc: true
format: html
---
```{r}
library(DT)
```
# EHM-Lab code repositories by Type
## Analysis
```{r}
analysis <- readRDS("tables/analysis.RDS")
DT::datatable(analysis,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```
## Tutorial
```{r}
tutorial <- readRDS("tables/tutorial.RDS")
DT::datatable(tutorial,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```
## Simulation
```{r}
simulation <- readRDS("tables/simulation.RDS")
DT::datatable(simulation,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```
## Dataset
```{r}
dataset <- readRDS("tables/dataset.RDS")
DT::datatable(dataset,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```
## Package
```{r}
package <- readRDS("tables/package.RDS")
DT::datatable(package,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```
## App
```{r}
apps <- readRDS("tables/shiny_app.RDS")
DT::datatable(apps,
rownames = FALSE,
escape = FALSE,
filter = "top",
options = list(autoWidth = TRUE, pageLength=5))
```