我正在使用KnnMatch
供电的blog。最近,我注意到DataCamp Light project声称“将任何网站或博客转换为交互式学习平台”,这听起来很棒(我想读者可以运行我在现场呈现的R代码,也可以对其进行一些修改以便更好地理解)。
是否存在一种将blogdown
与blogdown
交互性进行集成的简便方法?
答案 0 :(得分:2)
您可以使用Datacamp的tutorial
软件包:datacamp.github.io/tutorial
---
title: "Example Document"
author: "Your name here"
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
```