mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
33 lines
447 B
Markdown
33 lines
447 B
Markdown
# Get the function options based on the selected function description
|
|
|
|
Get the function options based on the selected function description
|
|
|
|
## Usage
|
|
|
|
``` r
|
|
get_plot_options(data)
|
|
```
|
|
|
|
## Arguments
|
|
|
|
- data:
|
|
|
|
vector
|
|
|
|
## Value
|
|
|
|
list
|
|
|
|
## Examples
|
|
|
|
``` r
|
|
ls <- mtcars |>
|
|
default_parsing() |>
|
|
dplyr::pull(mpg) |>
|
|
possible_plots() |>
|
|
(\(.x){
|
|
.x[[1]]
|
|
})() |>
|
|
get_plot_options()
|
|
#> Error in supported_plots(): object 'i18n' not found
|
|
```
|