Skip to content

Instantly share code, notes, and snippets.

@ledell
Last active December 17, 2020 05:23
Show Gist options
  • Save ledell/9323a3b5b6129761d138d5a161124296 to your computer and use it in GitHub Desktop.
Save ledell/9323a3b5b6129761d138d5a161124296 to your computer and use it in GitHub Desktop.
Count the number of meetups for a group since COVID quarantine started
# 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")
@ledell
Copy link
Author

ledell commented Dec 16, 2020

Install the meetupr package from Github as follows:

install.packages("remotes")
remotes::install_github("rladies/meetupr")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment