R Shiny需要包和Github

时间:2016-12-21 11:10:46

标签: r github shiny rstudio

所以我在Github上有一个R / shiny项目需要一些软件包,例如shinyjs,V8和dplyr,我在代码中指定了required(shinyjs)library(shinyjs)

在我的计算机上它工作正常,如果我从Github下载副本也可以,但如果我从另一台计算机上下载,我必须手动下载所需的软件包。

当有人试图运行应用程序时,有没有办法让Rstudio自动安装所需的软件包?

1 个答案:

答案 0 :(得分:2)

就是这样。在这里得到了这个功能:malonypatr's install_load function

截图来自RTVS,但我也在R-Studio中测试过它。

library(shiny)

install_load <- function (package1, ...)  {   

  # convert arguments to vector
  packages <- c(package1, ...)

  # start loop to determine if each package is installed
  for(package in packages){

    # if package is installed locally, load
    if(package %in% rownames(installed.packages()))
      do.call('library', list(package))

    # if package is not installed locally, download, then load
    else {
      install.packages(package)
      do.call("library", list(package))
    }
  } 
}

install_load("shinyjs")

shinyApp(
  ui = fluidPage(
    useShinyjs(), # Set up shinyjs
    # Add a CSS class for red text colour
    inlineCSS(list(.red = "background: red")),
    actionButton("btn", "Click me"),
    p(id = "element", "Watch what happens to me")
  ),
  server = function(input, output) {
    observeEvent(input$btn, {
      # Change the following line for more examples
      toggleClass("element", "red")
    })
  }
)

装载:

enter image description here 应用程序:

产量:

enter image description here