I have the shiny app below from which Im trying to download the plotly graph through downloadHandler(). The issue is that the object that Im trying to download
downloadHandler()
According to the ploty site use the following code:
if (!require("processx")) install.packages("processx") p <- plot_ly(z = ~volcano) %>% add_surface() orca(p, "surface-plot.png")