new renders

This commit is contained in:
Andreas Gammelgaard Damsbo 2026-05-30 19:59:31 +02:00
commit ab3df0eda6
No known key found for this signature in database
22 changed files with 97 additions and 38 deletions

27
man/get_input_params.Rd Normal file
View file

@ -0,0 +1,27 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot-helpers.R
\name{get_input_params}
\alias{get_input_params}
\title{Get the function parameters based on the selected function description}
\usage{
get_input_params(data)
}
\arguments{
\item{data}{vector}
}
\value{
list
}
\description{
Get the function parameters based on the selected function description
}
\examples{
ls <- mtcars |>
default_parsing() |>
dplyr::pull(mpg) |>
possible_plots() |>
(\(.x){
.x[[1]]
})() |>
get_input_params()
}