-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace outbreaks data with seattle pets; start updating warm-up slides
- Loading branch information
1 parent
24d1d5f
commit 9a7a99d
Showing
9 changed files
with
87,426 additions
and
59,494 deletions.
There are no files selected for viewing
43,684 changes: 43,684 additions & 0 deletions
43,684
slides/data-raw/warm-up/Seattle_Pet_Licenses_20240802.csv
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
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.
Oops, something went wrong.