From 78c86c0a0ba8b9cf2ffdb7919b5ac88120eb781a Mon Sep 17 00:00:00 2001 From: Joe Roe Date: Wed, 26 Jul 2023 08:29:01 +0200 Subject: [PATCH] Fix NA standardisation --- R/response.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/response.R b/R/response.R index ccf29ee..945bf64 100644 --- a/R/response.R +++ b/R/response.R @@ -86,7 +86,7 @@ intchron_tabulate_series <- function(series_list, header) { data <- dplyr::mutate( data, dplyr::across( - dplyr::everything(), + dplyr::where(is.character), ~ .x %>% dplyr::na_if("") %>% dplyr::na_if("-")