dreamRs / esquisse

RStudio add-in to make plots interactively with ggplot2
https://dreamrs.github.io/esquisse
Other
1.77k stars 229 forks source link

[Feature Request] Option to set port for browser display #51

Closed DanielLearner closed 5 years ago

DanielLearner commented 5 years ago

Right now a random port is assigned by r shiny. It would be useful to be able to make this port a constant value.

pvictor commented 5 years ago

Hi Daniel,

That's actually a shiny option, you can choose port like this:

library(esquisse)
options("shiny.port" = 8080)
esquisser(iris, viewer = "browser")

However, I can add an argument to the esquisse function to choose the port if the method above does not suit your need.

Victor