Skip to content

Commit

Permalink
fix: remove rlang usage
Browse files Browse the repository at this point in the history
  • Loading branch information
averissimo committed Dec 17, 2024
1 parent 8a9edd2 commit 1db24ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/tm_a_mmrm.R
Original file line number Diff line number Diff line change
Expand Up @@ -1468,8 +1468,8 @@ srv_mmrm <- function(id,
})

decorated_tables_q <- lapply(
rlang::set_names(
c("lsmeans_table", "diagnostic_table", "fixed_effects_table", "covariance_table")
stats::setNames(
nm = c("lsmeans_table", "diagnostic_table", "fixed_effects_table", "covariance_table")
),
function(output_function) {
srv_decorate_teal_data(
Expand All @@ -1485,7 +1485,7 @@ srv_mmrm <- function(id,
decorated_objs_q <- c(
decorated_tables_q,
lapply(
rlang::set_names(c("lsmeans_plot", "diagnostic_plot")),
setNames(nm = c("lsmeans_plot", "diagnostic_plot")),
function(output_function) {
srv_decorate_teal_data(
id = sprintf("d_%s", output_function),
Expand Down

0 comments on commit 1db24ad

Please sign in to comment.