Commit 27a42723 authored by Kevin Kunzmann's avatar Kevin Kunzmann

fixed issue with death in per protocol gose

parent 6a9167ab
...@@ -274,14 +274,14 @@ tbl_final_imputations <- readr::read_csv( ...@@ -274,14 +274,14 @@ tbl_final_imputations <- readr::read_csv(
by = "gupi" by = "gupi"
) %>% ) %>%
mutate( mutate(
# gose_map_imputed is only 1 when we know that the individual died before
# 6 months, i.e. in these cases the per-protocol gose shoul also be 1
gose_per_protocol = ifelse(gose_map_imputed == "1", "1", gose_per_protocol),
gose_map_per_protocol_combined = ifelse( gose_map_per_protocol_combined = ifelse(
is.na(gose_per_protocol), is.na(gose_per_protocol),
gose_map_imputed, gose_map_imputed,
gose_per_protocol gose_per_protocol
), )
# gose_map_imputed is only 1 when we know that the individual died before
# 6 months, i.e. in these cases the per-protocol gose shoul also be 1
gose_per_protocol = ifelse(gose_map_imputed == "1", "1", gose_per_protocol)
) %>% ) %>%
# reorder # reorder
select( select(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment