Last active
December 17, 2020 05:23
-
-
Save ledell/9323a3b5b6129761d138d5a161124296 to your computer and use it in GitHub Desktop.
Count the number of meetups for a group since COVID quarantine started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Meetups since quarantine started (feel free to adjust the date to your local lockdown date) | |
library(meetupr) | |
library(tidyverse) | |
meetup_urlname <- "Bay-Area-Women-in-Machine-Learning-and-Data-Science" #insert your meetup urlnamne here | |
events <- get_events(urlname = meetup_urlname, | |
event_status = "past") | |
events %>% | |
filter(local_date > "2020-03-15") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Install the meetupr package from Github as follows: