In the server function, I cannot add the customize the input. My server function is as below:
server <- shinyServer( function(input, output) { output$scatterplot <- renderEChart({echartr(movies, x = input$x, y = input$y, type = 'point')}) } )
However, when I use ShinyApp, it keeps telling me object 'input' not found.
In the server function, I cannot add the customize the input. My server function is as below:
server <- shinyServer( function(input, output) { output$scatterplot <- renderEChart({echartr(movies, x = input$x, y = input$y, type = 'point')}) } )However, when I use ShinyApp, it keeps telling me object 'input' not found.