如何使用RMarkdown在html中更改rChart iframe的尺寸?

时间:2014-07-31 12:20:26

标签: html r iframe r-markdown rcharts

我正在尝试在RMarkdown生成的html文档中合并基于nvd3库的rchart。但是我无法在html文档中调整生成的iframe的高度。 因此,我的情节中只有一半是可见的。使用R?有什么解决方案吗?我不知道任何HTML或CSS。这是我的代码块产生的情节。

```{r, echo=FALSE,results='asis',comment=NA}
library(rCharts)
hair_eye_male <- subset(as.data.frame(HairEyeColor), Sex == "Male")
n1 <- nPlot(Freq ~ Hair, group = "Eye", data = hair_eye_male, type = "multiBarChart")
n1$show("iframesrc",cdn=TRUE)
```

我甚至尝试在文本编辑器中打开html文件,并徒劳地编辑Iframe的widthheight选项。

0 个答案:

没有答案