fork download
  1. library(shiny)
  2.  
  3. shinyUI(fluidPage(
  4. titlePanel("eyetracking"),
  5. sidebarLayout(
  6. sidebarPanel(
  7. fileInput('file1', 'Choose file to upload')
  8. ),
  9.  
  10. mainPanel(
  11. tableOutput('contents')
  12. )
  13. )
  14. )
  15. )
Success #stdin #stdout #stderr 0.22s 60752KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error in library(shiny) : there is no package called ‘shiny’
Execution halted