Skip to content

Commit

Permalink
avoid warning while using tibble as input (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
elong0527 committed Dec 20, 2023
1 parent 9f0e283 commit d5b2857
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/meta_forestly.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ meta_forestly <- function(
observation_subset = SAFFL == "Y",
parameter_term = "any;rel;ser") {
meta <- metalite::meta_adam(
population = dataset_adsl,
observation = dataset_adae
population = as.data.frame(dataset_adsl),
observation = as.data.frame(dataset_adae)
) |>
metalite::define_plan(plan = metalite::plan(
analysis = "ae_forestly",
Expand Down

0 comments on commit d5b2857

Please sign in to comment.