Publish Rstudio Shiny App in intranet

后端 未结 3 2025
猫巷女王i
猫巷女王i 2021-01-31 06:34

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

3条回答
  •  花落未央
    2021-01-31 06:54

    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
    

提交回复
热议问题