我是使用 googleVis 的新手,遇到了一个我不知道如何管理的问题。如何在 html knitr 文档中显示 googleVis 图形?,我看到了一些模板并制作了这段代码
---
output:
knitrBootstrap::bootstrap_document:
title: "Test file"
theme: spacelab
highlight: Tomorrow
theme.chooser: FALSE
highlight.chooser: FALSE
---
```{r results='asis',echo=FALSE,fig.width=14, fig.height=8,fig.align='center', message=F, warning=F}
load("CLTVT.RData") #<-table with data
suppressPackageStartupMessages(library(googleVis))
A4=gvisMotionChart(CLTVT,
idvar="CLTV",
timevar="FECHA")
print(A4,tag='chart')
```
但是当我运行此代码(在 Rstudio 中)时,绘图的空间显示为空白(当我直接在 R 中执行此绘图时,绘图显示没有问题)。我缺少一些正确运行此代码的细节?,感谢您的帮助