diff --git a/data-raw/build_stat_id_df.R b/data-raw/build_stat_id_df.R index fdb0b098..a6af26e6 100644 --- a/data-raw/build_stat_id_df.R +++ b/data-raw/build_stat_id_df.R @@ -1,19 +1,15 @@ -library(magrittr) - -stat_ids <- "http://www.nflgsis.com/gsis/Documentation/Partners/StatIDs_files/sheet001.html" %>% - xml2::read_html() %>% - rvest::html_table(fill = TRUE) %>% - as.data.frame() %>% - dplyr::rename("stat_id" = X1, "name" = X2, "comment" = X3) %>% - dplyr::select(1:3) %>% - dplyr::slice(-1) %>% - dplyr::na_if("") %>% - dplyr::filter(!is.na(comment)) %>% - dplyr::mutate(stat_id = as.integer(stat_id)) %>% - dplyr::group_by(stat_id, name) %>% - dplyr::summarise(comment = paste0(comment, collapse = " ")) %>% - dplyr::ungroup() %>% +stat_ids <- "https://www.nflgsis.com/gsis/Documentation/Partners/StatIDs_files/sheet001.html" |> + xml2::read_html() |> + rvest::html_table(fill = TRUE) |> + as.data.frame() |> + dplyr::rename("stat_id" = X1, "name" = X2, "comment" = X3) |> + dplyr::select(1:3) |> + dplyr::slice(-1) |> + dplyr::mutate(stat_id = as.integer(stat_id)) |> + dplyr::filter(!is.na(stat_id)) |> + dplyr::group_by(stat_id, name) |> + dplyr::summarise(comment = paste0(comment, collapse = " ")) |> + dplyr::ungroup() |> dplyr::mutate(comment = stringr::str_squish(comment)) -# save(stat_ids, file = "data-raw/stat_ids.rda") usethis::use_data(stat_ids, overwrite = TRUE) diff --git a/data/stat_ids.rda b/data/stat_ids.rda index e4089847..ed941c89 100644 Binary files a/data/stat_ids.rda and b/data/stat_ids.rda differ