Skip to content

Commit

Permalink
Update DESCRIPTION
Browse files Browse the repository at this point in the history
  • Loading branch information
truenomad committed Mar 6, 2024
1 parent 6e3753f commit 60c1249
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
^.*\.Rproj$
^.*\.github$
^\.Rproj\.user$
^PolioAnalyticaAFRO\.Rproj$
^LICENSE\.md$
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Authors@R:
comment = c(
second_email = "[email protected]",
ORCID = "0000-0002-9339-4613")))
Description:This R package makes it easy to download Polio data from the WHO
Description: This R package makes it easy to download Polio data from the WHO
POLIS database.
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
RoxygenNote: 7.3.0
Suggests:
RcppSimdJson,
dplyr,
Expand Down
2 changes: 1 addition & 1 deletion R/update_polis_api_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ update_polis_api_data <- function(min_date,

# Combine new data with existing data
if (nrow(new_data) > 0) {
full_data <- bind_rows(full_data, new_data)
full_data <- dplyr::bind_rows(full_data, new_data)
}

# Log the session details to an Excel file
Expand Down

0 comments on commit 60c1249

Please sign in to comment.