mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-21 05:19:07 +02:00
Deploying to gh-pages from @ agdamsbo/FreesearchR@e8307d3a2e 🚀
This commit is contained in:
parent
03b54b0d15
commit
6087f061bf
186 changed files with 782 additions and 364 deletions
33
reference/get_input_params.md
Normal file
33
reference/get_input_params.md
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Get the function parameters based on the selected function description
|
||||
|
||||
Get the function parameters based on the selected function description
|
||||
|
||||
## Usage
|
||||
|
||||
``` r
|
||||
get_input_params(data)
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
- data:
|
||||
|
||||
vector
|
||||
|
||||
## Value
|
||||
|
||||
list
|
||||
|
||||
## Examples
|
||||
|
||||
``` r
|
||||
ls <- mtcars |>
|
||||
default_parsing() |>
|
||||
dplyr::pull(mpg) |>
|
||||
possible_plots() |>
|
||||
(\(.x){
|
||||
.x[[1]]
|
||||
})() |>
|
||||
get_input_params()
|
||||
#> Error in available_plots(): object 'i18n' not found
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue