From 90f25c2e3845b9396eebd8dd893b3393a10cf99b Mon Sep 17 00:00:00 2001 From: zoyafuso-NOAA <60302777+zoyafuso-NOAA@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:09:21 -0700 Subject: [PATCH] increased the precision of the comps --- code/production.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/production.R b/code/production.R index bc8a181..e5e446b 100644 --- a/code/production.R +++ b/code/production.R @@ -585,7 +585,7 @@ for (iregion in 1:length(x = regions)) { ## Loop over regions -- start cols_to_check = data.frame( colname = "POPULATION_COUNT", percent = T, - decplaces = 0), + decplaces = 2), base_table_suffix = "_CURRENT", update_table_suffix = "_UPDATE", key_columns = c("SURVEY_DEFINITION_ID", 'AREA_ID', "YEAR", @@ -627,7 +627,7 @@ for (iregion in 1:length(x = regions)) { ## Loop over regions -- start cols_to_check = data.frame( colname = c("POPULATION_COUNT", "LENGTH_MM_MEAN", "LENGTH_MM_SD"), percent = c(T, T, T), - decplaces = c(0, 2, 2)), + decplaces = c(2, 2, 2)), base_table_suffix = "_CURRENT", update_table_suffix = "_UPDATE", key_columns = c("SURVEY_DEFINITION_ID", 'AREA_ID', "YEAR",