https://github.com/mauromiguelm/wizardR
R/Shiny Multi-Step Wizard
https://github.com/mauromiguelm/wizardR
Last synced: 4 months ago
JSON representation
R/Shiny Multi-Step Wizard
- Host: GitHub
- URL: https://github.com/mauromiguelm/wizardR
- Owner: mauromiguelm
- License: mit
- Created: 2024-02-05T13:38:36.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-23T13:10:39.000Z (12 months ago)
- Last Synced: 2024-08-13T07:11:07.572Z (8 months ago)
- Language: R
- Homepage:
- Size: 131 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - mauromiguelm/wizardR - R/Shiny Multi-Step Wizard (R)
README
# wizardR
A R/Shiny user-friendly UI wizard that transforms complex tutorials or tasks into a sequence of steps.
This package works as a wrapper of the Wizard JS Javascript component.
## Installation
``` r
devtools::install_github("mauromiguelm/wizardR")
```
## Usage``` r
wizard(
# add one or more steps
wizard_step(
... # html content or shiny outputs
)
)
```
## ExampleYou can find a demo example (with inputs and outputs) in `inst/app/App.R`. You can also run this demo `wizardR::run_app`.