Skip to content
Snippets Groups Projects
Commit 30e965ae authored by Thomas  OBADIA's avatar Thomas OBADIA
Browse files

Following the previous commit, fix a corresponding (non-) issue where the raw...

Following the previous commit, fix a corresponding (non-) issue where the raw data was used to get country identifiers but it should rather have been the curated data. Impact is non-existent, but better be safe than sorry.
parent abb2fd05
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ dat_observational_curated <- dat_observational_raw %>%
## Name of output file
OBSERVATIONAL_OUT_02_FILENAME <- paste0("OBSERVATIONAL_OUT_02_raw-curated_data",
"_country-",
paste(unique(dat_observational_raw$country), collapse = "-"),
paste(unique(dat_observational_curated$country), collapse = "-"),
"_timestamp-",
strftime(Sys.time(), format = "%Y%m%d_%H%M%S"),
".csv")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment