Skip to content

Commit

Permalink
replace outbreaks data with seattle pets; start updating warm-up slides
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanhcullen committed Aug 8, 2024
1 parent 24d1d5f commit 9a7a99d
Show file tree
Hide file tree
Showing 9 changed files with 87,426 additions and 59,494 deletions.
43,684 changes: 43,684 additions & 0 deletions slides/data-raw/warm-up/Seattle_Pet_Licenses_20240802.csv

Large diffs are not rendered by default.

27 changes: 0 additions & 27 deletions slides/data-raw/warm-up/Table 1-Grid view.csv

This file was deleted.

87 changes: 0 additions & 87 deletions slides/data-raw/warm-up/outbreaks.Rmd

This file was deleted.

13 changes: 13 additions & 0 deletions slides/data-raw/warm-up/prep-data.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# A list of active/current Seattle pet licenses, including animal type (species), pet's name, breed and the owner's ZIP code.
# https://data.seattle.gov/Community/Seattle-Pet-Licenses/jguv-t9rb/about_data

library(tidyverse)

seattle_pets <-
read_csv(here::here("slides", "data-raw", "warm-up", "Seattle_Pet_Licenses_20240802.csv")) |>
janitor::clean_names() |>
rename(animal_name = animals_name)

seattle_pets |>
write_csv(here::here("slides", "data", "warm-up", "seattle_pets.csv"))
Binary file not shown.
Loading

0 comments on commit 9a7a99d

Please sign in to comment.