Publish Rstudio Shiny App in intranet

匿名 (未验证) 提交于 2019-12-03 02:45:02

问题:

I am trying to build a Rstudio/Shiny App and post it in our intranet so that everyone else in our office could see it. I am a windows guy, and the instructions online about how to setup a shiny server within Linux environment is a bit difficult for me. Is there an easy way that I can could accomplish this goal without messing up with Linux. Even if I have to do so, is there an easy way to just have my webpage available to people within our company, not everyone on the internet. Thanks!

回答1:

you don't need shiny server for this, you just need to run an R instance with shiny

http://rstudio.github.io/shiny/tutorial/#ui-and-server

http://shiny.rstudio.com/

shiny automatically runs it at local host... you need to change it to your own ip if you want your colleges be able to access it..

ip="192.168.178.10" # change this! runApp("../microplate",host=ip) # change microplate to the name of your shiny package/app 


回答2:

RStudio also has a hosted Shiny option that is currently in Alpha. You can sign up here https://www.shinyapps.io/admin/#/signup

With hosted Shiny the intention is to let developers focus on building applications while RStudio will worry about managing servers, monitoring performance, and ensuring uptime.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!