Skip to content

Instantly share code, notes, and snippets.

@anilyayavar
Created April 12, 2024 07:34
Show Gist options
  • Save anilyayavar/ae33ff3512a73b4670ddfdc7c987ab34 to your computer and use it in GitHub Desktop.
Save anilyayavar/ae33ff3512a73b4670ddfdc7c987ab34 to your computer and use it in GitHub Desktop.
library(tidyverse)
csr <- read_csv("https://raw.githubusercontent.com/anilyayavar/sqlmurdermystery/main/data/crime_scene_report.csv")
csr %>%
filter(date == '20180115',
type == "murder",
city == "SQL City") %>%
pull(description) %>%
cat()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment