-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfunder-report.qmd
More file actions
411 lines (346 loc) · 12.1 KB
/
Copy pathfunder-report.qmd
File metadata and controls
411 lines (346 loc) · 12.1 KB
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
---
title: "RLadies+ Annual Impact Report"
subtitle: "Community Growth and Achievements"
date: "`r Sys.Date()`"
author: "RLadies+ Global"
slug: funder-report
categories:
- reports
- annual
tags:
- impact
- funders
- metrics
draft: false
---
```{r}
#| label: setup
#| include: false
source(here::here("reports/_common.R"))
```
## Executive Summary
This annual report demonstrates the impact and reach of RLadies+ Global, highlighting community growth, event activity, and geographic expansion over the past year.
```{r}
#| label: annual-metrics
# Define reporting period: the last 12 *closed* months.
report_end <- floor_date(Sys.Date(), "month")
report_start <- report_end - years(1)
previous_start <- report_start - years(1)
previous_end <- report_start
# Prepare events data
events_analyzed <- events |>
filter(!status %in% c("cancelled", "CANCELLED")) |>
mutate(
event_date = as.Date(datetime_utc),
year = year(event_date),
is_virtual = str_detect(
tolower(location %||% ""),
"online|virtual|zoom|meet|not announced"
)
)
# Current reporting period
current_events <- events_analyzed |>
filter(event_date >= report_start, event_date < report_end)
# Previous period for comparison
previous_events <- events_analyzed |>
filter(event_date >= previous_start, event_date < previous_end)
# Active chapters (hosted at least one event in period)
active_chapters_current <- n_distinct(current_events$group_urlname)
active_chapters_previous <- n_distinct(previous_events$group_urlname)
# Total chapters
total_chapters <- n_distinct(chapters$urlname)
# Event counts
total_events_current <- nrow(current_events)
total_events_previous <- nrow(previous_events)
# Calculate growth rates
chapter_growth <- round(
(active_chapters_current - active_chapters_previous) /
active_chapters_previous *
100,
1
)
event_growth <- round(
(total_events_current - total_events_previous) / total_events_previous * 100,
1
)
# Virtual vs in-person
virtual_count <- sum(current_events$is_virtual, na.rm = TRUE)
inperson_count <- sum(!current_events$is_virtual, na.rm = TRUE)
```
### Key Achievements (`r format(report_start, "%B %Y")` - `r format(report_end - days(1), "%B %Y")`)
- **`r format(total_events_current, big.mark = ",")`** events hosted (`r if_else(event_growth >= 0, paste0("+", event_growth), as.character(event_growth))`% vs. previous year)
- **`r active_chapters_current`** active chapters (`r if_else(chapter_growth >= 0, paste0("+", chapter_growth), as.character(chapter_growth))`% vs. previous year)
- **`r total_chapters`** total chapters worldwide
- **`r format(virtual_count, big.mark = ",")`** virtual events ensuring global accessibility
- **`r format(inperson_count, big.mark = ",")`** in-person events fostering local community
## Community Growth
### Chapter Network Expansion
```{r}
#| label: chapter-growth
#| fig-cap: "Growth in active chapters over time"
# Calculate active chapters by quarter over last 3 years
## Use whole, closed quarters only. Anchor both bounds to quarter starts:
## the upper bound (current quarter start, excluded) drops the in-progress
## quarter, and the lower bound (3 years before that) ensures the first
## quarter is complete rather than a partial slice from `Sys.Date() - years(3)`.
chapter_activity <- events_analyzed |>
filter(
event_date >= floor_date(Sys.Date(), "quarter") - years(3),
event_date < floor_date(Sys.Date(), "quarter")
) |>
mutate(
quarter = floor_date(event_date, "quarter"),
quarter_label = paste0(year(quarter), " Q", quarter(quarter))
) |>
group_by(quarter, quarter_label) |>
summarise(
active_chapters = n_distinct(group_urlname),
.groups = "drop"
)
ggplot(chapter_activity, aes(x = quarter, y = active_chapters)) +
geom_line(color = rladies_colors$purple, linewidth = 1.2) +
geom_point(color = rladies_colors$purple, size = 3) +
geom_smooth(
method = "loess",
se = TRUE,
alpha = 0.2,
color = rladies_colors$dark_purple
) +
labs(
title = "Active Chapters Over Time",
subtitle = "Chapters hosting at least one event per quarter",
x = "Quarter",
y = "Number of Active Chapters"
) +
scale_x_date(
date_breaks = "3 months",
labels = function(d) paste0(year(d), " Q", quarter(d))
) +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
```
### Geographic Reach
```{r}
#| label: geographic-reach
#| fig-cap: "Event distribution by region"
# Bucket events by region using the chapter's country (not the venue's).
# chapter_country_iso is joined in via reports/_common.R. Virtual events
# are attributed to the region of the chapter that organized them.
regional_events <- current_events |>
mutate(
region = chapter_region(chapter_country_iso),
region = tidyr::replace_na(region, "Other")
) |>
count(region, sort = TRUE)
ggplot(regional_events, aes(x = n, y = reorder(region, n))) +
geom_col(fill = rladies_colors$purple) +
geom_text(
aes(label = sprintf("%d (%.1f%%)", n, n / sum(n) * 100)),
hjust = -0.1,
size = 3.5
) +
labs(
title = "Events by Region",
subtitle = paste(
"Reporting period:",
format(report_start, "%b %Y"),
"-",
format(report_end - days(1), "%b %Y")
),
x = "Number of Events",
y = NULL
) +
scale_x_continuous(expand = expansion(mult = c(0, 0.15)))
```
```{r}
#| label: regional-summary
#| include: false
regions_served <- regional_events |>
filter(region != "Other") |>
nrow()
```
RLadies+ events reached **`r regions_served`** geographic regions with **`r format(sum(regional_events$n), big.mark = ",")`** total events.
## Event Activity and Impact
### Event Volume Trends
```{r}
#| label: event-trends
#| fig-cap: "Monthly event activity"
monthly_events <- events_analyzed |>
filter(
event_date >= floor_date(Sys.Date(), "month") - years(2),
event_date < floor_date(Sys.Date(), "month")
) |>
mutate(month = floor_date(event_date, "month")) |>
count(month)
ggplot(monthly_events, aes(x = month, y = n)) +
geom_col(fill = rladies_colors$purple) +
geom_smooth(
method = "loess",
se = TRUE,
alpha = 0.2,
color = rladies_colors$dark_purple,
linewidth = 1
) +
labs(
title = "Monthly Event Activity",
subtitle = "Last 24 months with trend line",
x = "Month",
y = "Number of Events"
) +
scale_x_date(date_labels = "%b %Y", date_breaks = "3 months") +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
```
### Event Format Evolution
```{r}
#| label: format-evolution
#| fig-cap: "Virtual vs in-person event distribution over time"
# Use whole, closed quarters only (same rationale as the chapter-growth
# chart): both bounds anchored to quarter starts so neither the first nor
# the last quarter is a partial period.
format_trends <- events_analyzed |>
filter(
event_date >= floor_date(Sys.Date(), "quarter") - years(2),
event_date < floor_date(Sys.Date(), "quarter")
) |>
mutate(
quarter = floor_date(event_date, "quarter"),
quarter_label = paste0(year(quarter), " Q", quarter(quarter)),
format = if_else(is_virtual, "Virtual", "In-Person")
) |>
count(quarter, quarter_label, format) |>
group_by(quarter) |>
mutate(percentage = n / sum(n) * 100)
ggplot(format_trends, aes(x = quarter, y = n, fill = format)) +
geom_col(position = "stack") +
scale_fill_manual(
values = c(
"Virtual" = rladies_colors$purple,
"In-Person" = rladies_colors$light_purple
)
) +
labs(
title = "Event Format Distribution",
subtitle = "Quarterly breakdown of virtual and in-person events",
x = "Quarter",
y = "Number of Events",
fill = "Format"
) +
scale_x_date(
date_breaks = "3 months",
labels = function(d) paste0(year(d), " Q", quarter(d))
) +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
```
Virtual events comprise **`r round(virtual_count / total_events_current * 100, 1)`%** of all events, ensuring accessibility for members regardless of location or mobility constraints.
## Community Engagement
### Most Active Chapters
```{r}
#| label: top-chapters
#| fig-cap: "Top 20 chapters by event count"
top_chapters <- current_events |>
count(group_urlname, sort = TRUE) |>
slice_head(n = 20)
ggplot(top_chapters, aes(x = n, y = reorder(group_urlname, n))) +
geom_col(fill = rladies_colors$purple) +
geom_text(
aes(label = n),
hjust = -0.2,
size = 3
) +
labs(
title = "Most Active Chapters",
subtitle = paste(
"Top 20 chapters:",
format(report_start, "%b %Y"),
"-",
format(report_end - days(1), "%b %Y")
),
x = "Number of Events",
y = NULL
) +
scale_x_continuous(expand = expansion(mult = c(0, 0.15)))
```
### Chapter Health and Sustainability
```{r}
#| label: chapter-health
#| fig-cap: "Chapter activity distribution"
chapter_health <- current_events |>
count(group_urlname, name = "events") |>
mutate(
activity_level = case_when(
events >= 12 ~ "Very Active (12+ events)",
events >= 6 ~ "Active (6-11 events)",
events >= 3 ~ "Moderate (3-5 events)",
TRUE ~ "New/Emerging (1-2 events)"
),
activity_level = factor(
activity_level,
levels = c(
"Very Active (12+ events)",
"Active (6-11 events)",
"Moderate (3-5 events)",
"New/Emerging (1-2 events)"
)
)
) |>
count(activity_level)
ggplot(chapter_health, aes(x = activity_level, y = n)) +
geom_col(fill = rladies_colors$purple) +
geom_text(
aes(label = sprintf("%d\n(%.1f%%)", n, n / sum(n) * 100)),
vjust = -0.3,
size = 3.5
) +
labs(
title = "Chapter Activity Distribution",
x = "Activity Level",
y = "Number of Chapters"
) +
scale_y_continuous(expand = expansion(mult = c(0, 0.15))) +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
```
```{r}
#| label: health-metrics
#| include: false
very_active <- chapter_health |>
filter(activity_level == "Very Active (12+ events)") |>
pull(n)
active_plus <- chapter_health |>
filter(
activity_level %in% c("Very Active (12+ events)", "Active (6-11 events)")
) |>
summarise(n = sum(n)) |>
pull(n)
```
**`r very_active`** chapters hosted 12+ events (monthly or more frequent), demonstrating strong community engagement.
**`r active_plus`** chapters maintained regular programming with 6+ events throughout the year.
## Looking Forward
### Strategic Priorities
Based on this year's data and community feedback, our priorities for the coming year include:
1. **Chapter Support**: Provide resources and mentorship to chapters in the "Moderate" category to increase activity
2. **Geographic Expansion**: Focus outreach in underserved regions, particularly Africa and Asia
3. **Sustainability**: Develop leadership succession planning for very active chapters
4. **Accessibility**: Maintain strong virtual programming while supporting return to in-person events
5. **Network Effects**: Facilitate cross-chapter collaborations and speaker sharing
### Goals for Next Year
- Increase active chapters by 15-20%
- Expand presence in underrepresented regions
## Financial Stewardship
Funding received this year has directly supported:
- **Infrastructure**: Meetup.com platform costs for `r total_chapters` chapters
- **Programming**: Virtual event platform licenses and technical support
- **Outreach**: Marketing materials and promotional campaigns
- **Development**: Website maintenance and community tools
- **Training**: Organizer resources and leadership development
All funds are used exclusively for community benefit, with volunteer leadership ensuring efficient resource allocation.
## Acknowledgments
This impact was made possible by:
- **`r active_chapters_current`** chapter organizing teams
- Hundreds of volunteer speakers and workshop leaders
- Our dedicated global leadership team
- Technical contributors to RLadies+ infrastructure
- Our generous funders and sponsors
Thank you for supporting RLadies+ Global in promoting gender diversity in the R community.
---
*Report period: `r format(report_start, "%B %d, %Y")` - `r format(report_end - days(1), "%B %d, %Y")`*
*Report generated: `r format(Sys.time(), "%Y-%m-%d %H:%M %Z")`*
*Data source: RLadies+ Meetup Archive*