Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronlee12355/shinytrials
Shiny applications with shiny & shinydashboard
https://github.com/ronlee12355/shinytrials
r reactiveui shiny web-application
Last synced: about 1 month ago
JSON representation
Shiny applications with shiny & shinydashboard
- Host: GitHub
- URL: https://github.com/ronlee12355/shinytrials
- Owner: Ronlee12355
- Created: 2020-03-15T04:41:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T06:05:00.000Z (almost 5 years ago)
- Last Synced: 2024-11-06T11:49:54.617Z (3 months ago)
- Topics: r, reactiveui, shiny, web-application
- Language: R
- Homepage:
- Size: 1.73 MB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ShinyTrials
Shiny is a new package from RStudio that makes it incredibly easy to build interactive web applications with R.
[shinydashboard](https://rstudio.github.io/shinydashboard/) makes it easy to use Shiny to create dashboards.
This repo contains all shiny apps that I practice for bioinformatics field.
If you need more solid shiny demos and showcases, [Shiny](http://shiny.rstudio.com) official website on rstudio or the [Shiny on GitHub](https://github.com/rstudio/shiny) would be helpful.All shiny apps can be downloaded and run locally, but the installion of package shiny and shinydashboard is needed. To install shiny and shinydashboard:
```
# install from the CRAN
install.package('shiny')
install.package('shinydashboard')## install the dev version from GitHub
devtools::install_github('rstudio/shiny')
devtools::install_github('rstudio/shinydashborad')
```## Contents List
1. [HTML form table elements in Shiny](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_form_table)
2. [Dynamic UI and interactive output with plotly](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_ui_output)
3. [Download Hander Demo With Update Functions Family](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_downloadhander)
4. [Shiny Dashborad Creation with shinydashboard package](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_dashboard)
5. [Shiny Dashboard With Brushed Feature and InfoBox](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_infoBox_brushed)
6. [Shiny Models and Input Validation](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_model)
7. [Shiny Navigation Page](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_naviBar)
8. [Shiny Layouts Demonstrations](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_layouts)
9. [Shiny ReactiveValue and imageOutput](https://github.com/Ronlee12355/ShinyTrials/tree/master/shiny_reactive_value_image_output)