This experiment will plot the Microsoft stock or the Google stock depending on user input. User can also select a date range. The Shiny application will be called Experiment2. To set things up I will need to create 4 things 1. Create an Experiment2 folder. 2. Create a server.R script file in the Experiment2 folder. 3. Create a ui.R script file in the Experiment2 folder. 4. Create an Experiment2_App.R script file outside the Experiment1 folder. The server.R script is library(shiny) library(Quandl) library(ggplot2) shinyServer(function(input, output) { # Place this variable here. It will be run only once each time a user visits the app. # This makes the output unique to a particular user stkList <- data.frame(name=c("Microsoft", "Google"),symbol=c("GOOG/NASDAQ_MSFT","GOOG/NASDAQ_GOOGL" ),stringsAsFactors = FALSE) output$text1 <- renderText({ paste("You have selected ",input$var) }) ...