标签: r shiny shiny-server
我的app需要3个文件。
app
首先,包含函数的常规r会进行一些计算,需要加载ui和server个文件才能运行app。
r
ui
server
当我在Rstudio上运行时,它运行正常。如何将此app插入shiny server,这意味着我首先需要一个脚本,之后运行ui和server个文件?
Rstudio
shiny server
答案 0 :(得分:0)
使用global.R文件或使用source(file, local = FALSE)从file读取R代码。
global.R
source(file, local = FALSE)
file
有关详细信息,请查看scoping rules.