From 6e3753f26040321774b3536a18855258f4a9d0fa Mon Sep 17 00:00:00 2001 From: truenomad Date: Mon, 4 Dec 2023 08:06:22 +0300 Subject: [PATCH] Use bind_raws instead of rbind for update_polis_api_data --- R/update_polis_api_data.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/update_polis_api_data.R b/R/update_polis_api_data.R index fc74827..6add227 100644 --- a/R/update_polis_api_data.R +++ b/R/update_polis_api_data.R @@ -85,7 +85,7 @@ update_polis_api_data <- function(min_date, # Combine new data with existing data if (nrow(new_data) > 0) { - full_data <- rbind(full_data, new_data) + full_data <- bind_rows(full_data, new_data) } # Log the session details to an Excel file