fork download
  1. library(shiny)
  2. library(rsconnect)
  3. library(shinyjs)
  4. shinyUI(fluidPage(
  5.  
  6. titlePanel("index predictive plot and predictive table"),
  7. mainPanel(
  8. textInput( "index1",label = "code") ,
  9. textOutput("yahooop"),
  10. actionButton("goButton", "Go!"),
  11. textOutput("income1"),
  12.  
  13. textOutput("income2"),
  14. textOutput("income3"),
  15. textOutput("start.date1"),
  16. tableOutput("start.date"),
  17.  
  18.  
  19.  
  20. tabsetPanel(
  21. tabPanel( "op.index",
  22. plotOutput("open.predict.plot1"),
  23. textOutput("open.table1"),
  24. tableOutput("open.value1"),
  25. textOutput("open.table2"),
  26. tableOutput("open.predict.table1"),
  27.  
  28. ),
  29. tabPanel( "close.index",
  30. plotOutput("close.predict.plot1"),
  31. textOutput("close.table1"),
  32. tableOutput("close.value1"),
  33.  
  34. textOutput("close.table2"),
  35. tableOutput("close.predict.table1"),
  36.  
  37.  
  38. ))
  39. ,width = 15,height=15))) # your code goes here
Success #stdin #stdout #stderr 0.42s 43056KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error in library(rsconnect) : there is no package called ‘rsconnect’
Execution halted