Skip to content

Instantly share code, notes, and snippets.

@anilyayavar
Created April 12, 2024 08:03
Show Gist options
  • Save anilyayavar/882bf827e54b0c4764a75dc9b7703d1e to your computer and use it in GitHub Desktop.
Save anilyayavar/882bf827e54b0c4764a75dc9b7703d1e to your computer and use it in GitHub Desktop.
gfn_checkins <- read_csv("https://raw.githubusercontent.com/anilyayavar/sqlmurdermystery/main/data/get_fit_now_check_in.csv")
gfn_checkins %>%
filter(check_in_date == "20180109") %>%
right_join(
gfn_member %>%
filter(membership_status == "gold",
str_detect(id, "^48Z")),
by = join_by(membership_id == id)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment