What is Shiny - Statistics-and-Machine-Learning-with-R/Statistical-Methods-and-Machine-Learning-in-R GitHub Wiki
Welcome to Shiny:
- Shiny is an R-package that makes it easy to build interactive web applications (apps) straight from R.
- Its Basic use is to present the analysis(performed in R-studio) with graphical representation.
For Example:
Download and Install Shiny:
- Installing shiny is as simple as installing other R-packages
---> Run these command and you are ready to go with SHINY:
install.packages('shinydashboard')
library(shiny)
library(shinydashboard)