Plotting currencies given time and currency using quantmod and google finance
问题 My ui.r library(shiny) codes <- paste("CURRENCY:",currencies,sep="") currencies <- c("ARS","AUD","BRL","CAD","CHF", "CNY","DKK","EUR","GBP","IDR", "ILS","INR", "JPY","MXN","MYR", "NOK","NZD","PHP","RUB","SEK", "THB","TRY") shinyUI(fluidPage( titlePanel("Currency Charts"), sidebarLayout( sidebarPanel( helpText("Select a currency to examine. Information will be collected from Quandl."), selectInput("symb", label = "Choose a variable to display", choices = currencies, selected = "ARS"),