generated from rpodcast/r_dev_projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.qmd
61 lines (48 loc) · 837 Bytes
/
index.qmd
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
---
title: "RWeekly Curation Calendar"
format:
dashboard:
logo: "assets/icon-256x256.png"
execute:
echo: false
---
```{r}
#| label: setup
#| include: false
library(dplyr)
library(toastui)
library(reactable)
library(htmltools)
# load supporting functions
source("R/create_curator_df.R")
source("R/import_schedule_functions.R")
source("R/process_cal_data.R")
source("R/curator_table.R")
```
```{css}
.imageclass {
height: 1.3rem;
}
```
# Schedule
```{r}
cal_df <- import_schedule_data()
processed_cal_data <- process_cal_data(cal_df)
```
## Row
### Column {width="50%"}
```{r}
toastui::calendar(
data = processed_cal_data,
view = "month",
navigation = TRUE
) |>
toastui::cal_month_options(
startDayOfWeek = 1,
narrowWeekend = FALSE
)
```
### Column {width="50%"}
```{r}
curator_table(cal_df)
```