闪亮的server.R无法上传库

时间:2016-07-28 11:33:51

标签: r shiny

我现在正在尝试解决一个惊人的错误。这是我服务器的标题.R:

library(shiny)
library(plotly)
library(DT)
library(Rcpp)
library(RSQLite)
library(org.Mm.eg.db)
library(shinyBS)
library(igraph)
library(reshape2)
library(ggplot2)
library(org.Hs.eg.db)
library(visNetwork)

我希望在运行应用程序时上传这些库,但在3种情况下:visNetowrk,plotly和shinyBS,我有几个错误:

Error : could not find function "visNetworkOutput"
Error : could not find function "plotlyOutput"
Error : could not find function "bsTooltip"

所以我需要使用console手动包含这些库:

library(plotly); library(visNetwork); library(shinyBS)

如何克服这个?提前谢谢!

1 个答案:

答案 0 :(得分:1)

如果要保留 ui.R server.R 文件而不是Global.R(特别是 plotly ),则为

Berecht已经提到),您也可以将library(plotly)添加到 ui.R 文件的第一行。那对我有用。