-
Notifications
You must be signed in to change notification settings - Fork 9
/
README.Rmd
71 lines (47 loc) · 1.73 KB
/
README.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
---
output: github_document
always_allow_html: true
editor_options:
chunk_output_type: console
---
```{r, include = FALSE}
knitr::opts_chunk$set(echo = TRUE, size = 3)
library(tidyverse)
library(kableExtra)
library(googlesheets4)
library(lubridate)
mytable <- function(df){
kable(df) %>%
kable_styling(bootstrap_options = c("hover", "condensed", "responsive"),
full_width = F,
font_size = 12)}
```
## Welcome to R-Ladies Netherlands Book Club 📚 🇳🇱!!
R-Ladies chapters from the Netherlands are gathering forces to host online book clubs!
We are very excited to start with the book [**Advanced R**](https://adv-r.hadley.nz/) by Hadley Wickham.
### What to expect?:
- Highlight the key points on each topic of the book with a presentation.
- Go together through the exercises.
- Discuss and clarify doubts.
### When?
The events will be hosted every two weeks by different R-Ladies chapters, on Tuesdays at 6pm, via jitsi.
### Current agenda:
```{r, include = FALSE}
url <- ("https://docs.google.com/spreadsheets/d/1oAzHwL8OMo3AE3994MkYVSPyR9RawZWiwvYDB-nSg-8/edit#gid=0")
gs4_deauth()
data <- read_sheet(url) %>%
janitor::clean_names() %>%
mutate(date = as.character(date)) %>%
select(chapter, title, description, speaker, date, hosted_by, link)
```
```{r, echo=FALSE}
data %>%
filter(!is.na(speaker)) %>%
mytable() %>%
row_spec(0, bold = T, color = " white", background = "#562457")
```
Sign-up to present a topic [**here**](https://bit.ly/2QBYGEG)
To join the event, click at the link on our **_Current agenda_**!
<br><br>
**Looking forward to see you soon!**
<img src="R-LadiesGlobal_RBG_online_LogoWithText_Horizontal.png" width="300" height="100" />