example of reactive data visualization server done in R
Server calulates forecast for a stock price and displays this to user.
R 3.1.2+ required
go to the R console:
install.packages('quantmod')
install.packages('shiny')
install.packages('forecast')
library('shiny')
and in the R console:
library('quantmod')
library('shiny')
runApp('forecastOfStock')
