-1

I have a flexdashboard code in R. It always opens in a new port if I launch the code. How to configure in R to open in browser in a specific port. Please help.

Aizen
  • 561
  • 1
  • 9
  • 19
  • Please include a [reproducible example](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example). – figurine Dec 16 '16 at 09:34

1 Answers1

1

Well if you're running it on the local host then this should work:

rmarkdown::run("shiny_doc.Rmd", shiny_args = list(port = 8241))
NinjaElvis
  • 78
  • 6