这些tutorial
包允许在 html 文档中包含一个datacamp
交互式R
窗口:
---
title: "Example Document"
output:
html_document:
self_contained: FALSE
---
```{r, include=FALSE}
tutorial::go_interactive()
```
By default, `tutorial` will convert all R chunks.
```{r}
a <- 2
b <- 3
a + b
```
因此,我认为它可以在 HTML5 演示文稿中使用它,例如:
---
title: "Example Document"
output:
ioslides_presentation:
self_contained: FALSE
---
```{r, include=FALSE}
tutorial::go_interactive()
```
By default, `tutorial` will convert all R chunks.
```{r}
a <- 2
b <- 3
a + b
```
然而,这只制造了废话。有没有人有让这个工作的经验?
PS:迄今为止最好的结果是一个长的字母数字字符串,而不是浏览器窗口(谷歌浏览器)中的控制台。