R:无法在闪亮的应用程序中更新网格(网格包)

时间:2015-01-22 14:54:25

标签: r shiny r-grid

我正在使用网格包中的函数(如pushViewport(),grobs等)在闪亮的应用程序中绘制绘图。我使用renderPlot()绘制它。在服务器脚本中,它看起来有点像这样:

  output$myPlot <- renderPlot({
    load("list_with_grid_paramaters.RData")        
    source("script_that_builds_the_grid.R")        
  },width = 800, height = 800)

当我启动应用程序时,它正确地构建网格。在我的应用程序中,我可以更改网格的参数并将其另存为新的list_with_grid_paramaters.RData。当我在更改参数后再次尝试renderPlot()网格时(使用动作按钮),该图不会更新。

有没有人知道这可能是什么情况?非常感谢!

0 个答案:

没有答案