Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀

This commit is contained in:
agdamsbo 2025-11-19 13:25:44 +00:00
commit 6d545337de
328 changed files with 12930 additions and 1662 deletions

View file

@ -0,0 +1,35 @@
# Get possible regression models
Get possible regression models
## Usage
``` r
possible_functions(data, design = c("cross-sectional"))
```
## Arguments
- data:
data
## Value
character vector
## Examples
``` r
mtcars |>
default_parsing() |>
dplyr::pull("cyl") |>
possible_functions(design = "cross-sectional")
#> [1] "Ordinal logistic regression model"
mtcars |>
default_parsing() |>
dplyr::select("cyl") |>
possible_functions(design = "cross-sectional")
#> [1] "Ordinal logistic regression model"
```