可以从另一个闪亮的应用程序运行闪亮的应用程序

时间:2016-03-29 13:46:11

标签: r shiny

有可能是这样的:

shinyServer(
  function(input, output, session) {

    output$text1 <- renderText({ 

      rep <- "Other"

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

      runExample("01_hello")


    })

  }
)

0 个答案:

没有答案