Shiny server.R failed to uploaded libraries -
i'm trying fix amazing error. here`s header of server.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)
i expect these libraries uploaded when running ythe application, instead in 3 cases : visnetowrk, plotly , shinybs i`m getting several errors:
error : not find function "visnetworkoutput" error : not find function "plotlyoutput" error : not find function "bstooltip"
so need include these libraries manually using console:
library(plotly);library(visnetwork);library(shinybs)
how overcome this? in advance!
Comments
Post a Comment