如何创建彩色 ioslides

How to Create Colourful ioslides

我渴望创造出像这张照片一样的多彩ioslides

这是我尝试过的:

---
title: |
  "R on Twiter"
  .
author: "Daniel James"
#date: "`r Sys.Date()`"
output: 
  ioslides_presentation:
  toc: true
code_folding: "show"
---


```{r setup, include=F}
knitr::opts_chunk$set(echo = TRUE)
```

## R Code
```{r rfortwiter, include = TRUE}
library(dplyr)

# data to use
df <- head(mtcars)

# in pipe workflow

# pulling a single column without 'pull()'
df %>% .$cyl
#> [1] 6 6 4 6 8 6

# pulling a single column with 'pull()' 
df %>% pull(cyl)
#> [1] 6 6 4 6 8 6
```

我实际上是在 Twitter @rfunctionaday 上得到了这张图片,我想制作一张像这样色彩缤纷的独立幻灯片,以便在社交媒体上展示我的新 R package

通常这种类型的图像是使用 Carbon (https://carbon.now.sh/), or similar tools (eg. silicon: https://github.com/Aloxaf/silicon) 生成的。

另一种使用 R 的方法是 carbonate 程序包 (https://yonicd.github.io/carbonate/),它将从文件中读取代码,将其提交给 Carbon,然后将其保存为图像。然后您可以将该图像添加到您的 Rmarkdown 文档中。