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.  
  12. tabsetPanel(
  13. tabPanel( "op.index",
  14. plotOutput("open.predict.plot1"),
  15. tableOutput("open.value1"),
  16. textOutput("open.table1"),
  17. tableOutput("open.predict.table1"),
  18. textOutput("open.table2")
  19. ),
  20. tabPanel( "close.index",
  21. plotOutput("close.predict.plot1"),
  22. tableOutput("close.value1"),
  23. textOutput("close.table1"),
  24. tableOutput("close.predict.table1"),
  25. textOutput("close.table2"),
  26. textOutput("income")
  27. ))
  28. ,width = 15,height=15)))
Success #stdin #stdout #stderr 0.36s 43220KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error in library(rsconnect) : there is no package called ‘rsconnect’
Execution halted