I\'m using shiny and I can\'t get a plotly graph to appear. It was appearing before, I don\'t know what changed.
MRE:
global.r (or put this into server.r)
renderPlotly({ return(plot_ly(x)) })
is broken.
renderPlotly(plot_ly(x))
works.
To do more work before rendering the plotly, do something like
renderPlotly(yourFunctThatGeneratesAPlotly(input$Whatever))