Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zappingseb/customshinyinput
An example app describing how to build custom shiny inputs
https://github.com/zappingseb/customshinyinput
jquery r shiny shiny-apps
Last synced: 24 days ago
JSON representation
An example app describing how to build custom shiny inputs
- Host: GitHub
- URL: https://github.com/zappingseb/customshinyinput
- Owner: zappingseb
- Created: 2018-10-02T15:27:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-05T05:50:39.000Z (about 6 years ago)
- Last Synced: 2024-07-29T19:26:37.898Z (5 months ago)
- Topics: jquery, r, shiny, shiny-apps
- Language: JavaScript
- Size: 28.3 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - zappingseb/customshinyinput - An example app describing how to build custom shiny inputs (JavaScript)
README
# 7 easy steps to custom inputs in shiny
This is the outcome shiny application out of a
[tutorial](https://medium.com/@zappingseb/7-steps-that-make-custom-inputs-in-shiny-easy-504b303a2973) that tells you how to build this application.The shiny app will include custom inputs that are
two color pickers. Those color pickers will be handed
over to shiny as one single value. The value
will be parsed into a list.Finally the colors will be used to color a
barplot.To see the whole tutorial check the [Medium link](https://medium.com/@zappingseb/7-steps-that-make-custom-inputs-in-shiny-easy-504b303a2973)
## Run the app
derive all dependencies by
```
install.packages(c("shiny","jsonlite","datasets","glue"))
```and run the application
```
runApp()
```## References
* [Tutorial link - 7 easy steps to custom inputs in shiny](https://medium.com/@zappingseb/7-steps-that-make-custom-inputs-in-shiny-easy-504b303a2973)
* [spectrum.js](https://bgrins.github.io/spectrum/)
* [Building shiny inputs](https://shiny.rstudio.com/articles/building-inputs.html)