启动一个闪亮的应用程序

你可以通过多种方式启动应用程序,具体取决于你创建应用程序的方式。如果你的应用分为两个文件 ui.Rserver.R,或者你的所有应用都在一个文件中。

1.两个文件的应用程序

你的两个文件 ui.Rserver.R 将在同一个文件夹中。然后,你可以通过在控制台中运行 shinyApp() 函数并传递包含 Shiny 应用程序的目录的路径来启动你的应用程序。

shinyApp("path_to_the_folder_containing_the_files")  

你还可以在打开 ui.Rserver.R 文件时按 Rstudio 上显示的 运行应用程序 按钮,直接从 Rstudio 启动应用程序
StackOverflow 文档

或者,如果你的工作目录是 Shiny App 目录,你只需在控制台上编写 runApp() 即可。

2.一个文件应用程序

如果你在一个 R 文件中创建,你也可以使用 shinyApp() 函数启动它。

  • 你的代码里面:
library(shiny)

ui <- fluidPage() #Create the ui
server <- function(input, output){} #create the server

shinyApp(ui = ui, server = server) #run the App
  • 在控制台中添加路径到 .R 文件包含 Shiny 应用程序与参数 appFile
shinyApp(appFile="path_to_my_R_file_containig_the_app")