Skip to content

Commit

Permalink
converting levels to character
Browse files Browse the repository at this point in the history
  • Loading branch information
ddsjoberg committed Jun 26, 2024
1 parent 9dd9e1b commit 578eb18
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion R/ard_continuous.survey.design.R
Original file line number Diff line number Diff line change
Expand Up @@ -311,5 +311,11 @@ accepted_svy_stats <- function(expand_quantiles = TRUE) {
}

df_stat |>
dplyr::mutate(stat_name = .env$stat_name)
dplyr::mutate(
stat_name = .env$stat_name,
across(
c(cards::all_ard_groups("levels"), cards::all_ard_variables("levels")),
~ map(.x, as.character)
)
)
}

0 comments on commit 578eb18

Please sign in to comment.