From 6f31aa6f79adc4c423696c8d31dc9673b4acbb6a Mon Sep 17 00:00:00 2001 From: Yamina Boukari <87201452+YaminaB@users.noreply.github.com> Date: Thu, 7 May 2026 09:13:10 +0000 Subject: [PATCH] removed rounding from process full cohort script to check the unknowns --- analysis/process_full_cohort_data.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/analysis/process_full_cohort_data.R b/analysis/process_full_cohort_data.R index e2b7714..4304c7d 100644 --- a/analysis/process_full_cohort_data.R +++ b/analysis/process_full_cohort_data.R @@ -72,7 +72,7 @@ table_freq_overall <- cohort %>% mutate( subgroup = "All", category = "All", - n = rounding(n), + #n = rounding(n), percentage = round((100 * n / sum(n, na.rm = TRUE)),1) ) %>% ungroup() @@ -103,7 +103,7 @@ table_freq <- cohort %>% ) %>% group_by(migration_scheme, migration_status, subgroup) %>% mutate( - n = rounding(n), + #n = rounding(n), percentage = round((100 * n / sum(n, na.rm = TRUE)),1) ) %>% ungroup()