我尝试在 R 中使用 slidify 包构建演示文稿。我已经对演示文稿进行了编码,并在以下 .Rmd 文件中调用了 slidify 函数。我在 GGally 中使用了 diamonds 数据集。
当我发布以下内容时,n1$show("iframesrc", cdn = TRUE) 没有显示 rChart。
object$show() 中的错误:找不到对象“opts_current”
gvisMotionChart 也显示错误。
我想知道并期待 rCharts 和 gvisMotionChart,我错过了一些东西。感谢期待。
---
title : Presentation
subtitle :
author :
job :
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [mathjax, quiz, bootstrap,shiny,interactive] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
knit : slidify::knit2slides
--- &interactive
```{r}
library(rCharts)
library(ggplot2)
library(GGally)
n1 <- nPlot(carat ~ cut , group = "color", data = diamonds[1:40,], type = "multiBarChart")
n1$show("iframesrc", cdn = TRUE)
```
--- &interactive
## Plot
```{r opts.label = 'interactive'}
library(googleVis)
library(GGally)
g <-gvisMotionChart(diamonds, "carat", "price", options = list(width = 800, height = 600))
g$show("iframesrc", cdn = TRUE)
```