R 是否可以从另一个闪亮应用程序运行闪亮应用程序?

R 是否可以从另一个闪亮应用程序运行闪亮应用程序?,r,shiny,R,Shiny,有没有可能是这样的: shinyServer( function(input, output, session) { output$text1 <- renderText({ rep <- "Other" if (input$var == "First"){ rep <- "Run"} paste("You have sel

有没有可能是这样的:

shinyServer(
  function(input, output, session) {

    output$text1 <- renderText({ 

      rep <- "Other"

      if (input$var == "First"){
                                                  rep <- "Run"}
      paste("You have selected", rep)

      runExample("01_hello")


    })

  }
)
shinyServer(
功能(输入、输出、会话){

输出$text1不确定,但是你看到了吗?还有一个关于这个主题的。你需要什么有趣?为什么不简单地让应用程序在其他端口上运行呢?我有一些现成的闪亮应用程序。我想用一个应用程序运行它们来制作一个菜单。JasonAizkalns,谢谢你,我来看看闪亮的模块