r4fun / hierplane

🌳 Hierplane for R
https://r4fun.github.io/hierplane/
Other
9 stars 0 forks source link

Unexpected behavior with html widget #32

Open tylerlittlefield opened 4 years ago

tylerlittlefield commented 4 years ago
library(hierplane)
library(shiny)

ui <- fluidPage(
  hierplaneOutput("hplane")
)

server <- function(input, output, session) {

}

shinyApp(ui, server)
mathidachuk commented 4 years ago

what is the desired/expected output here? there is no obj to render

tylerlittlefield commented 4 years ago

I expected a white screen, e.g.:

library(shiny)

ui <- fluidPage(
  plotOutput("hplane")
)

server <- function(input, output, session) {

}

shinyApp(ui, server)