是否可以从循环或函数内部使用ggplotly()
或datatable()
在 RMarkdown中使用?for
例子:
---
title: "Using `ggplotly` and `DT` from a `for` loop in Rmarkdown"
output: html_document
---
```{r setup, include=FALSE}
library(ggplot2); library(DT)
```
## Without `for` loop - works
```{r}
datatable(cars)
g <- ggplot(cars) + geom_histogram(aes_string(x=names(cars)[1] ))
ggplotly(g)
```
## From inside the `for` loop - does not work (nothing is printed)
```{r}
for( col in 1:ncol(cars)) {
datatable(cars) # <-- does not work
print( datatable(cars) ) # <-- does not work either
g <- ggplot(cars) + geom_histogram(aes_string(x=names(cars)[col] ) )
ggplotly (g) # <-- does not work
print ( ggplotly (g) ) # <-- does not work either
}
```
我想知道这是否是因为交互式输出根本无法print
通过设计进行编辑。
打印非交互式输出时不存在此类问题。
PS 这与:
使用 rmarkdown 中的 R
Looping headers/sections 自动生成 Rmarkdown 中的预格式化文本?