Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
athowes authored and seabbs committed May 16, 2024
1 parent 612ffbb commit c18e94b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion R/data.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#' \item{district}{The district (ADM2)}
#' \item{chiefdom}{The chiefdom (ADM3)}
#' }
#'
#' @family data
#' @source <https://www.pnas.org/doi/full/10.1073/pnas.1518587113>
"ebola_outbreak_sierra_leone"
7 changes: 5 additions & 2 deletions data-raw/process_raw_data.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
ebola_outbreak_sierra_leone <- readxl::read_xlsx("data-raw/pnas.1518587113.sd02.xlsx")
ebola_outbreak_sierra_leone <- janitor::clean_names(ebola_outbreak_sierra_leone)
ebola_outbreak_sierra_leone <- readxl::read_xlsx(
"data-raw/pnas.1518587113.sd02.xlsx"
) |>
janitor::clean_names()

usethis::use_data(ebola_outbreak_sierra_leone, overwrite = TRUE)

0 comments on commit c18e94b

Please sign in to comment.