在Shiny App中训练模型时显示加载标志

时间:2017-10-06 01:28:42

标签: r shiny r-caret shinydashboard

我正在制作一个闪亮的应用程序,其中,在单击actionButton时,使用插入符包训练模型。由于此培训需要时间 - 大约4-5分钟 - 我想在App中显示加载标志或加载GIF,其中在训练模型后显示结果。否则,用户将不知道发生了什么或模型何时被训练。

由于

2 个答案:

答案 0 :(得分:5)

你可以在你的ui.R

中使用加载微调器
# loading the library
library(shinycssloaders)
withSpinner()

# For example, if you have the plot for which you would like to show loading spinner before it's gets drawn while making some data manipulation 
withSpinner(plotOutput("my_plot")) 

您可以在https://cran.r-project.org/web/packages/shinycssloaders/README.html

上找到有关它的更多信息

答案 1 :(得分:1)

您可以制作进度条。例子如下:

https://shiny.rstudio.com/articles/progress.html