Skip to content

Commit

Permalink
#204 chore: styler changes
Browse files Browse the repository at this point in the history
  • Loading branch information
manciniedoardo committed Nov 10, 2023
1 parent 1679fb6 commit 33a4c54
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions inst/templates/ad_advfq.R
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ advfq_qr01 <- advfq_aval %>%
set_values_to = exprs(
AVAL = identity(AVAL),
PARAMCD = "QR01"
)
)
) %>%
mutate(AVAL = ifelse(PARAMCD == "QR01",
case_when(
Expand Down Expand Up @@ -236,11 +236,10 @@ advfq_visit <- advfq_qbcs %>%
),
AVISITN = case_when(
VISIT == "BASELINE" ~ "0",
str_detect(VISIT, "WEEK") ~ VISIT %>%
str_detect(VISIT, "WEEK") ~ VISIT %>%
str_replace("WEEK", "") %>%
str_replace("\\(T\\)", "") %>%
str_trim(),

TRUE ~ NA
),
)
Expand Down

0 comments on commit 33a4c54

Please sign in to comment.