-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathemail1.Rmd
192 lines (141 loc) · 5.49 KB
/
email1.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
---
title: "Welcome to R-Ladies Remote"
output: html_notebook
---
```{r echo=FALSE,warning=FALSE,message=FALSE}
library(googlesheets)
library(tidyverse)
library(stringr)
library(RColorBrewer)
results <- gs_title("R ladies remote") %>% gs_read
map1 = results %>%
mutate(country = case_when((tolower(Country) %in%
c('us','usa','u.s.a.','south bend'))|
grepl('united states',tolower(Country))|
(Country=='Georgia'&City=='Atlanta')~'USA',
grepl('united kingdom|england|scotland|wales|reino unido',
tolower(Country))|(tolower(Country)=='uk')~'UK',
grepl('new zealand|nz',tolower(Country))~'New Zealand',
grepl('germ|deutschland',tolower(Country))~'Germany',
grepl('canada|canda',tolower(Country))~'Canada',
grepl('argenti',tolower(Country))~'Argentina',
grepl('netherland|holland',tolower(Country))~'Netherlands',
grepl('colombi',tolower(Country))~'Colombia',
tolower(Country) %in% c('spain','españa')~'Spain',
tolower(Country) %in% c('italy','italia')~'Italy',
tolower(Country) %in% c('norge','norway')~'Norway',
tolower(Country) %in% c('brazil','brasil')~'Brazil',
TRUE~str_to_title(Country))) %>%
group_by(country) %>%
summarize(count=n())
```
Thank you for signing up to R-Ladies remote. We've had an incredible response from around the globe with `r nrow(results)` responses from `r nrow(map1)` different countries and every different continent. We are exciting to building an exciting global community together!
#Slack Group
We have a R-Ladies Remote Slack Group. Your invitation is here - please join and meet other remote R-ladies
#First Event
We will be launching our first event on ...
#Summary of results
We'd like to share some of the responses we got to our welcome survey, to show what people want from R Ladies remote.
```{r echo=FALSE,warning=FALSE,message=FALSE}
world <- map_data("world")
uniquecounts <- as.character(c(0,1,2,3,4,5,6,7,8,17,
20,23,25,34,162))
newdat <- full_join(world, map1, by=c("region"="country")) %>%
mutate(count = ifelse(is.na(count),0,count),
count = factor(count, levels=uniquecounts))
uniquecolors <- c(NA, #0
"#e0ecf4","#e0ecf4","#e0ecf4", #1,2,3
"#bfd3e6","#bfd3e6","#bfd3e6", #4,5,6
"#9ebcda","#9ebcda", #7,8
"#8c96c6", #17
"#8c6bb1","#8c6bb1", #20, 23
"#88419d", #25
"#810f7c", #34
"#4d004b") #162
g1 <- ggplot(data=newdat,
aes(long, lat))+
geom_polygon(aes(group=group, fill=count),color="black")+
theme_bw()+
theme(panel.background = element_rect(fill="darkgray"))+
scale_fill_manual(breaks=uniquecounts,
values=uniquecolors)
results_nrow <- nrow(results)
graph2 <- results %>%
group_by(`What is your current level of R knowledge?`) %>%
summarise(count=n(),
proportion=count/results_nrow) %>%
ungroup()
graph2$Rlevel = str_wrap(graph2$`What is your current level of R knowledge?`, width=7)
unilevels <- unique(graph2$Rlevel)[c(5,1,2,3,4)]
graph2$Rlevel <- factor(graph2$Rlevel,
levels=unilevels)
purples <- brewer.pal(5,"PRGn")
g2 <- ggplot(data=graph2,
aes(x=Rlevel,
y=count))+
geom_col(aes(fill=Rlevel), color="black")+
theme_bw()+
scale_fill_manual(values=purples)+
theme(legend.position="none")+
xlab("R Experience Level")+
ylab("Count of Respondants")
results$`Which one(s) below would you be interested in? Select all that apply` = gsub(', ([[:upper:]])','| \\U\\1',results$`Which one(s) below would you be interested in? Select all that apply`,perl=TRUE)
graph3 <- strsplit(results$`Which one(s) below would you be interested in? Select all that apply`,'|',fixed=TRUE) %>%
unlist() %>%
trimws() %>%
table() %>%
data.frame() %>%
mutate(prop = Freq/nrow(results))
colnames(graph3)[1] <- "interest"
graph3$interest <- str_wrap(graph3$interest
, width=20)
purples <- brewer.pal(9,"PRGn")
a <- unique(graph3$interest)[1:4]
b <- unique(graph3$interest)[5:9]
g3a <- graph3 %>%
filter(interest %in% a) %>%
ggplot( aes(x=interest,
y=Freq))+
geom_col(aes(fill=interest), color="black")+
theme_bw()+
scale_fill_manual(values=purples[1:4])+
theme(legend.position="none")+
xlab("Interest")+
ylab("Counts")
g3b <- graph3 %>%
filter(interest %in% b) %>%
ggplot( aes(x=interest,
y=Freq))+
geom_col(aes(fill=interest), color="black")+
theme_bw()+
scale_fill_manual(values=purples[5:9])+
theme(legend.position="none")+
xlab("Interest")+
ylab("Counts")
g3 <- cowplot::plot_grid(g3a, g3b, ncol=1)
graph4 <- strsplit(results$`Why are you interested in R-Ladies Remote? (select all applicable)`,',',fixed=TRUE) %>%
unlist() %>%
trimws() %>%
table() %>%
data.frame() %>%
mutate(prop = Freq/nrow(results))
colnames(graph4)[1] <- "why"
graph4$why <- str_wrap(graph4$why
, width=10)
purples <- brewer.pal(6,"PRGn")
g4 <- ggplot(data=graph4,
aes(x=why,
y=Freq))+
geom_col(aes(fill=why), color="black")+
theme_bw()+
scale_fill_manual(values=purples)+
theme(legend.position="none")+
xlab("Why R-Ladies")+
ylab("Counts")
```
```{r echo=FALSE}
g1
g2
g3
g4
```