forked from r-in-grenoble/r-in-grenoble.github.io
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsessions.Rmd
270 lines (224 loc) · 7.23 KB
/
sessions.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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
---
title: "Course Agenda (Pacific Time) and Lessons"
output:
html_document:
includes:
in_header: header.html
editor_options:
chunk_output_type: console
---
</br>
We are excited that you will be joining us for this workshop! Please fill out this [google form](https://docs.google.com/forms/d/e/1FAIpQLSd6yThLtJLjAICFzvOkPGoAou3aJcD-4s-7uhVFfQI3hVaoMQ/viewform?usp=sf_link) to let us know that you will be joining us.
### Here is the [YouTube playlist recording](https://www.youtube.com/playlist?list=PLJI4SWhcIx2gdco0peJg5WJGSHg8L_Al6) of the workshop.
Let us know what you thought of the workshop by filling out of the [google form](https://docs.google.com/forms/d/e/1FAIpQLSfaTfffgaZj8sBTEU6Kk1bbr98RnbYglbiT3pJJ-3rxZSvIkA/viewform?vc=0&c=0&w=1&flr=0&gxids=7757)!
*Please click on the title to see the session description*
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, warning=FALSE, error = FALSE, message = FALSE)
library(tidyverse)
library(lubridate)
library(htmltools)
library(here)
```
```{r}
#Agenda <- data.frame(read_csv("./R Workshop Detailed Schedule.csv", col_names = FALSE))
Agenda <- data.frame(read_csv("./R Workshop Detailed Schedule.csv", col_names = FALSE))
# Agenda <- data.frame(read_csv(here("R Workshop Detailed Schedule.csv"), col_names = FALSE))
names(Agenda)<-Agenda[2,]
Agenda<-Agenda[-c(1:2),]
Agenda$Notes0<-Agenda$Notes
Agenda0 <- Agenda
not0<-c("", "??", NA)
Agenda$Date<-paste0(
Agenda$`Start Time (PT)`, "-", Agenda$`End Time (PT)`
)
Agenda$Title<-paste0(Agenda$`Course Segment`,
ifelse( ( Agenda$`Course Segment` == Agenda$Topics |
Agenda$`Course Segment` %in% not0 |
Agenda$Topics %in% not0 ), "", " - "),
ifelse( ( Agenda$`Course Segment` == Agenda$Topics |
Agenda$Topics %in% not0 ), "", Agenda$Topics) )
Agenda$Authors<-paste0(ifelse(Agenda$Presenter %in% not0, "", paste0("Presenter: ", Agenda$Presenter)), #Presenter
ifelse((Agenda$`Chat/Q&A` %in% not0), "", "; "), # ;
ifelse((Agenda$Presenter %in% not0), "", " "), # Space
ifelse(Agenda$Host %in% not0, "", paste0("Host: ", Agenda$Host)), # Host
ifelse((Agenda$`Chat/Q&A` %in% not0), "", "; "), # ;
ifelse(Agenda$`Chat/Q&A` %in% not0, "", paste0("Help: ", Agenda$`Chat/Q&A`)) ) # Help
Agenda$Notes[is.na(Agenda$Notes)]<-""
aa<-strsplit(x = Agenda$Notes, split = "\n\n")
for (i in 1:length(aa)){
if (length(aa[i][[1]])!=0) {
for (ii in 1:length(aa[i][[1]])) {
# dd<- aa[i][[1]][ii]
if (grepl(pattern = "https://", x = aa[i][[1]][ii], ignore.case = T)) {
bb<-strsplit(x = aa[i][[1]][ii], split = ": ")
if (grepl(pattern = ".html", x = aa[i][[1]][ii], ignore.case = T)) {
htmlname<-strsplit(split = "/", x = bb[[1]][2])[[1]]
download.file(url = bb[[1]][2],
destfile = paste0(getwd(), "/les_", htmlname[length(htmlname)]))
bb[[1]][2]<-paste0("les_", htmlname[length(htmlname)])
}
# cc<-paste0('["', bb[[1]][1], '"] (', bb[[1]][2], '")')
# cc<-paste0('<a href="', bb[[1]][2], '">', bb[[1]][1], '</a>')
cc<-paste0('
tags$p(""),
tags$a(href="', bb[[1]][2], '", "', bb[[1]][1], '")')
# cc<-paste0("![{",bb[[1]][2],"}]({",bb[[1]][1],"})")
# aa[i][[1]][ii]<-paste0("<li>", cc, "</li>")
aa[i][[1]][ii]<-cc#paste0('tags$li(', cc, ')')
} else {
cc<-paste0('tags$p("', aa[i][[1]][ii], '")')
# cc<-paste0('<p>', ifelse(is.na(aa[i][[1]][ii]), "", aa[i][[1]][ii]), '</p>')
# aa[i][[1]][ii]<-paste0("<li>", cc, "</li>")
aa[i][[1]][ii]<-cc#paste0('tags$li(', cc, ')')
}
}
# aa[i][[1]]<-paste0("tags$div(",
# paste(aa[i][[1]], collapse = " "),
# ")")
aa[i][[1]]<-paste0('tags$li(', paste(aa[i][[1]], collapse = ", "), ')')
# aa[i][[1]]<-paste(aa[i][[1]], collapse = ", ")
} else {
aa[i][[1]]<-""
}
# aa[i][[1]]<-paste0("")
}
Agenda$Notes<-unlist(aa)
Agenda<-Agenda[,c("Date","Notes","Title","Authors")]
program<-as_tibble(Agenda) #%>%
```
```{css}
.schedule {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.limit {
width: 100%;
padding: 5px 0 5px 0;
}
.workshops-button {
padding: 0.75em 1.25em;
background-color: #cccccc;
opacity: 0.9;
width: auto;
color: black;
text-align: center;
overflow: auto;
}
.workshops-button {
padding: 0.75em 1.25em;
background-color: #cccccc;
opacity: 0.9;
width: auto;
color: black;
text-align: center;
overflow: auto;
}
.left-date {
width: 20%;
float: left;
text-align: left;
}
.center-title {
width: 60%;
float: left;
text-align: left;
font-size: 120%;
}
.right-authors {
width: 20%;
float: right;
text-align: right;
}
.workshops {
margin: 1em 1em 0 0;
}
.active {
background-color: #333333;
color: whitesmoke;
}
```
```{js}
function main() {
$('.schedule').hide();
$('.schedule').fadeIn(2000);
$('.workshops').hide();
$('.workshops-button').on('click', function() {
$(this).next().slideToggle(400);
$(this).toggleClass('active');
});
}
$(document).ready(main);
```
## Tuesday, September 22, 2020
```{r}
program1<-program[grepl(pattern = "Tuesday, September 22, 2020", x = Agenda0$Date), ]
div(
class = "schedule",
apply(program1, 1, function(event) {
div(
class = "limit",
div(class = "workshops-button",
div(class = "left-date",
event[['Date']]),
div(class = "center-title",
# tags$i(event[['Title']])),
tags$b(event[['Title']])),
div(class = "right-authors",
event[['Authors']])),
tags$ul(class = "workshops",
(eval(parse(text=event[["Notes"]])) ) )
# event[["Notes"]])
)
})
)
```
<br>
## Wednesday, September 23, 2020
```{r}
program1<-program[grepl(pattern = "Wednesday, September 23, 2020", x = Agenda0$Date), ]
div(
class = "schedule",
apply(program1, 1, function(event) {
div(
class = "limit",
div(class = "workshops-button",
div(class = "left-date",
event[['Date']]),
div(class = "center-title",
# tags$i(event[['Title']])),
tags$b(event[['Title']])),
div(class = "right-authors",
event[['Authors']])),
tags$ul(class = "workshops",
(eval(parse(text=event[["Notes"]])) ) )
# event[["Notes"]])
)
})
)
```
<br>
## Thursday, September 24, 2020
```{r}
program1<-program[grepl(pattern = "Thursday, September 24, 2020", x = Agenda0$Date), ]
div(
class = "schedule",
apply(program1, 1, function(event) {
div(
class = "limit",
div(class = "workshops-button",
div(class = "left-date",
event[['Date']]),
div(class = "center-title",
# tags$i(event[['Title']])),
tags$b(event[['Title']])),
div(class = "right-authors",
event[['Authors']])),
tags$ul(class = "workshops",
(eval(parse(text=event[["Notes"]])) ) )
# event[["Notes"]])
)
})
)
```
<br>