I am trying to plot two graphs side by side within main panel.
......
mainPanel(
div(class="span6",plotOutput(outputId= "myPlot1"))
div(class="span6",plotOutput(outputId= "myPlot2"))
)
......
Both the reactive functions myPlot1 and myPlot2 are triggered by the same input variable.
I am getting this error:
Error in if (width <= 0 || height <= 0) return(NULL) :
missing value where TRUE/FALSE needed
Error in source(filePath, local = new.env(parent = .GlobalEnv)) :
D:/STUDY files/ProjBE/shinyapp/ui.R:18:9: unexpected symbol
17: div(class="span6",plotOutput(outputId= "myPlot1"))
18: div