-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathkick-off-presentation.Rmd
203 lines (153 loc) · 5.06 KB
/
kick-off-presentation.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
---
title: "R-Ladies Bergen Kick-off Meeting"
author: "Julia, Jonelle & Astrid"
date: "`r Sys.Date()`"
output:
ioslides_presentation:
logo: R-Ladies-horiz-bergen.png
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
library( ggplot2 )
library( tidyverse )
```
# R-Ladies Global
## What is R-Ladies?
- A global community of ladies who use R
- that seeks to _support_ and _inspire_ others
- through **teaching**, **sharing**, and **mentorship**
# R-Ladies Bergen
## Who are we?
- Jonelle Dickow Villar
- Julia Romanowska
- Astrid Lunde
## Meetup group
- 45 members already!
- who are we?
- why did we gather here?
# Poll results
## How advanced in R are you?
```{r poll1-data,echo=FALSE}
# updated by Julia on 25 Nov.2019
subtitle <- "(out of 45 registered on Meetup)"
# here - create the tibble
poll.q1 <- tribble( ~q.alt, ~answers,
"I want to learn!", 3,
"I’ve learned basics and I want more!", 9,
"R is one of many programming languages I know", 3,
"I am Hadley Wickham (she/her) ;)", 1
)
# explicitly setting the order of labels
poll.q1$q.alt <- factor( poll.q1$q.alt, levels = rev( poll.q1$q.alt ), ordered = TRUE )
tot.ans.q1 <- sum( poll.q1$answers )
y.ticks <- seq( 0, 10, 2 )
ggplot( poll.q1, aes( q.alt, answers, fill = q.alt ) ) +
geom_col() + coord_flip() +
theme_minimal() +
scale_y_continuous( breaks = y.ticks, labels = as.character( y.ticks ) ) +
theme(
plot.title = element_text( hjust = 1 ),
plot.subtitle = element_text( hjust = 1 ),
legend.position = "none"
) +
ylab("") + xlab("") +
labs( title = paste( "Total of", tot.ans.q1, "R-Ladies answered"),
subtitle = subtitle )
```
## What is the field where you (would) use R the most?
```{r poll2-data,echo=FALSE}
poll.q2 <- tribble( ~q.alt, ~answers,
"Bioinformatics / structural bioinformatics", 3,
"Statistics", 7,
"Applied mathematics", 0,
"Political science", 0,
"Economics", 2,
"Visualization", 0,
"History / Literature", 0,
"Meteorology", 0,
"Cheminformatics", 0,
"Biology", 2,
"AI / Machine learning", 0,
"Other", 3
)
poll.q2$q.alt <- factor( poll.q2$q.alt, levels = rev( poll.q2$q.alt ), ordered = TRUE )
tot.ans.q2 <- sum( poll.q2$answers )
ggplot( poll.q2, aes( q.alt, answers, fill = q.alt ) ) +
geom_col() + coord_flip() +
theme_minimal() +
theme(
plot.title = element_text( hjust = 1 ),
plot.subtitle = element_text( hjust = 1 ),
legend.position = "none"
) +
ylab("") + xlab("") +
labs( title = paste( "Total of", tot.ans.q2, "R-Ladies answered"),
subtitle = subtitle )
```
## What do you use R for?
```{r poll3-data,echo=FALSE}
poll.q3 <- tribble( ~q.alt, ~answers,
"Plotting", 1,
"Organizing tables", 0,
"Exploring the data", 0,
"Specific analyses", 0,
"Everything", 12,
"Nothing (yet!)", 3
)
poll.q3$q.alt <- factor( poll.q3$q.alt, levels = rev( poll.q3$q.alt ), ordered = TRUE )
tot.ans.q3 <- sum( poll.q3$answers )
y.ticks <- seq( 0, 12, 2 )
ggplot( poll.q3, aes( q.alt, answers, fill = q.alt ) ) +
geom_col() + coord_flip() +
theme_minimal() +
scale_y_continuous( breaks = y.ticks, labels = as.character( y.ticks ) ) +
theme(
plot.title = element_text( hjust = 1 ),
plot.subtitle = element_text( hjust = 1 ),
legend.position = "none"
) +
ylab("") + xlab("") +
labs( title = paste( "Total of", tot.ans.q3, "R-Ladies answered"),
subtitle = subtitle )
```
# Aim of the meeting
## Aims
- Get to know one another
- Learn something new in R
- Get ideas for future meetings
- Introduce R-Ladies Global on social media
## Tips for future meetings
- **Themed evenings**
* GitHub, Tidyverse, R Markdown, data visualization, functional programming, machine learning
- **SatRday workshops** - mentoring hands-on
- **Lightening talks** presenting research projects
- **Hackathon-events** such as Reproducibility Hackathon for
* teaching tools for sharing reproducible code
* gaining experience with reproducing `#opendata` `#opencode` papers
* connecting with `#openscience` fans from other disciplines
## Warm up!
- Groups of 4 or 5
- Say hi to everyone within the group
- why did they come here?
- where do they use R?
- Discuss: *how do you want future meetings to look like?*
## Check out R-Ladies on social media
- Join the directory: http://rladies.org/directory/
- **Twitter**
- R-Ladies Bergen: @RLadiesBergen
- R-Ladies Global: @RLadiesGlobal
- We are R-Ladies: @WeAreRLadies
- **Facebook:** R-Ladies-Bergen
- Sign up on **Meetup**: https://meetup.com/rladies-bergen/
- **Slack** workspace: `rladies-norway`
- **github**: https://github.com/rladies/meetup-presentations_bergen
## Save the date!
The European R users meeting (eRum) comes to Milan.
The event will feature multiple parallel sessions on topics
- data science,
- statistics
- machine learning
With international speakers, lightening talks and workshops.
27-30 May, 2020
R-Ladies from different European chapters will be there!
http://2020.erum.io