version bump
Some checks failed
pkgdown.yaml / pkgdown (push) Has been cancelled

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-04-11 13:24:37 +02:00
commit 7d9e5a8f00
No known key found for this signature in database
3 changed files with 5 additions and 2 deletions

View file

@ -9,7 +9,7 @@
\usage{
regression_model(
data,
outcome.str,
outcome.str = NULL,
auto.mode = FALSE,
formula.str = NULL,
args.list = NULL,
@ -165,6 +165,8 @@ gtsummary::trial |>
dplyr::bind_rows()
ms <- regression_model_uv_list(data = default_parsing(mtcars), outcome.str = "mpg", fun.descr = "Linear regression model")
ms$code
ls <- regression_model_uv_list(data = default_parsing(mtcars), outcome.str = "am", fun.descr = "Logistic regression model")
ls$code
lapply(ms$model, broom::tidy) |> dplyr::bind_rows()
}
}