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
parent 361296531e
commit 7d9e5a8f00
No known key found for this signature in database
3 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,6 @@
Package: FreesearchR
Title: Browser Based Data Analysis
Version: 25.4.1
Version: 25.4.2
Authors@R:
person("Andreas Gammelgaard", "Damsbo", , "agdamsbo@clin.au.dk", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7559-1154"))

View file

@ -17,6 +17,7 @@ Deparses expression as string, substitutes native pipe and adds assign
}
\examples{
list(
as.symbol(paste0("mtcars$","mpg")),
rlang::call2(.fn = "select", !!!list(c("cyl", "disp")), .ns = "dplyr"),
rlang::call2(.fn = "default_parsing", .ns = "FreesearchR")
) |>

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()
}
}