Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/r/83.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Flexdashboard包含runtime:Shining将html输出保存在tmp文件夹中,html文件显示空白页面_R_Shiny_Flexdashboard_Rstudio Server_Googlevis - Fatal编程技术网

Flexdashboard包含runtime:Shining将html输出保存在tmp文件夹中,html文件显示空白页面

Flexdashboard包含runtime:Shining将html输出保存在tmp文件夹中,html文件显示空白页面,r,shiny,flexdashboard,rstudio-server,googlevis,R,Shiny,Flexdashboard,Rstudio Server,Googlevis,我一直在寻找这个问题几个小时,我似乎找不到正确的解决办法。如果您能帮我解决这个问题,我将不胜感激 我的RStudio服务器中有一个flexdashboard,其中有一个gvisoChart,我将其包装在动态UI中。如下图所示: output: flexdashboard::flex_dashboard: html_document: default orientation: rows vertical_layout: scroll theme: bootstrap run

我一直在寻找这个问题几个小时,我似乎找不到正确的解决办法。如果您能帮我解决这个问题,我将不胜感激

我的RStudio服务器中有一个flexdashboard,其中有一个
gvisoChart
,我将其包装在
动态UI
中。如下图所示:

output: 
  flexdashboard::flex_dashboard:
  html_document: default
  orientation: rows
  vertical_layout: scroll
  theme: bootstrap

runtime: shiny

library(shiny)
library(flexdashboard)
library(googleVis)


# #create a ui interaction:
uiOutput("dynamic")

#render the ui:
output$dynamic <- renderUI({
   htmlOutput("myTable")
 })

#plot the chart
output$myTable <- renderGvis({gvisGeoChart(buyer_eur, locationvar = 
"Buyers", colorvar = "Sum of Invoices",
         options = list("regions",
                        height = "auto",
                        width = "auto")})
我去拿这个文件,但当我在本地机器上打开它时,我只看到一个空白页

有人能告诉我如何从这个仪表板生成一个可以使用的
html
文件吗

Output created: /tmp/RtmpYG0i95/file320c5f4901a.html