1) Extra comma in ui.R2) input/output id containing a point
3) ggplot(...) + ... does not work in the output of renderPlot({}); use print(ggplot(...) + ... ).
1) Extra comma in ui.R :"Error in tag("div", list(...)) : argument is missing, with no default"
2) input/output id containing a point
many possible error messages3) ggplot(...) + ... does not work in the output of renderPlot({}); use print(ggplot(...) + ... ). empty plot in the app
And the global.r file is really helpfull
What else ? When someone requiring some help has made such a mistake in his code, we could refer him/her to the list of common mistakes.
another one is forgetting to install.packages("somepackage") on the remote server. And slightly more subtle is to have different versions of the packages locally and on the server.
--
You received this message because you are subscribed to the Google Groups "Shiny - Web Framework for R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to shiny-discus...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Trying to access a reactive expression without using ().foo <- reactive({...})output$plot <- renderPlot({plot(foo)})