Open tylerlittlefield opened 4 years ago
what is the desired/expected output here? there is no obj to render
I expected a white screen, e.g.:
library(shiny)
ui <- fluidPage(
plotOutput("hplane")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)