使用RStudio 0.97时,我曾经能够轻松地将googleVis
图编织到html输出中。但是,现在使用RStudio 0.98.94,即使对于以下Rmd,它也会导致错误:
---
title: "knitr googleVis"
output: html_document
---
```{r, results='asis'}
library('googleVis')
tbl <- gvisTable(data.frame(letters = letters[1:5], number = seq(5)))
print(tbl, 'chart')
```
错误消息是:
pandoc.exe:无法检索https://www.google.com/jsapi?callback=displayChartTableID253831656700
InternalIOException getAddrInfo:不存在(错误11001)
错误:pandoc文档转换失败,错误61
另外:警告消息:
在if(grepl(“”,path,fixed = TRUE))path 条件的长度> 1,并且仅使用第一个元素
执行停止
以下是我的sessionInfo():
sessionInfo()
R版本3.0.2(2013-09-25)
平台:x86_64-w64-mingw32 / x64(64位)
地区:
[1] LC_COLLATE =英语_美国.1252 LC_CTYPE =英语_美国.1252> LC_MONETARY =英语_美国.1252
[4] LC_NUMERIC = C LC_TIME = English_United States.1252
附加基本软件包:
[1]统计图形grDevices utils数据集方法库
其他附件包:
[1] googleVis_0.5.4
通过 namespace (未附加)加载:
[1]摘要_0.6.4 htmltools_0.2.4 RJSONIO_1.0-3 rmarkdown_0.2.49工具_3.0.2> yaml_2.1.13
有人对此有任何想法吗?非常感谢!
最佳答案
Knitr does not render googleVis或devtools::install_github('mages/googleVis')
对我来说很有效。
关于r - 在RStudio 0.98.94中使用Knitr HTML的Googlevis出现问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24933689/