将Blogdown与DataCamp Light集成

时间:2018-10-11 10:46:58

标签: r blogdown

我正在使用KnnMatch供电的blog。最近,我注意到DataCamp Light project声称“将任何网站或博客转换为交互式学习平台”,这听起来很棒(我想读者可以运行我在现场呈现的R代码,也可以对其进行一些修改以便更好地理解)。

是否存在一种将blogdownblogdown交互性进行集成的简便方法?

1 个答案:

答案 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
```