Hello, is there a way not to automatically launching the web browser when using plotly_POST?
Regards,
Paul
Hello, is there a way not to automatically launching the web browser when using plotly_POST?
Regards,
Paul
You can set plotly_POST()
to a variable i.e.:
library(plotly) p <- plot_ly(x = c(1, 2), y = c(1, 2)) plot <- plotly_POST(p)
Then the Success! message with the plot URL will be returned, but the web browser wonβt launch.