add data from r4ds

This commit is contained in:
2024-03-21 22:32:02 +08:00
parent efb50900ef
commit 00c44b652e
103 changed files with 1300 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
repurrrsive::gap_simple |>
count(year)
by_year <- repurrrsive::gap_simple |>
group_by(year)
paths <- by_year |>
group_keys() |>
mutate(path = str_glue("data/gapminder/{year}.xlsx")) |>
pull()
paths
years <- by_year |>
group_split() |>
map(\(df) select(df, -year))
dir.create("data/gapminder")
walk2(years, paths, writexl::write_xlsx)