Skip to content

Commit

Permalink
increased the precision of the comps
Browse files Browse the repository at this point in the history
  • Loading branch information
zoyafuso-NOAA committed Oct 18, 2024
1 parent 271d98e commit 90f25c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/production.R
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 90f25c2

Please sign in to comment.