Has anyone come across a solution that would take a list of named items and generate a corresponding set of shiny input fields… With checkboxes where the input class is logical
, etc.
The particular envisioned use case is to -in the context of a run of the mill “render yourR
analysis accessible to non-specialists” project- be able to extract a underlying function’s parameters and defaults using formals()
and feed the resulting list (filtered against symbol
s etc.) into the magic functionality outlined above, generating a gui representation of the function interface without the need to manually choose every single element.
Any hint is highly appreciated.