3

从 github 下载所需的软件包后,我正在尝试 slidify,如本文档中所述,开始使用 Slidify。在使用 create_deck() 创建了卡片组后,我在网上找到的测试代码上使用了函数 slidify()。这是代码:

--- 

### A Simple Plot

Let us create a simple scatterplot.

```{r simple-plot, fig.height = 6, fig.align = 'center', message = F}
require(ggplot2)
qplot(wt, mpg, data = mtcars)
```

--- 

### A Table

```{r table, results = 'asis', comment = NA}
library(xtable)
options(xtable.type = 'html')
xtable(head(mtcars))
```

我将上面的代码保存为 test_slidify.Rmd 并使用 slidify("test_slidify.Rmd") 调用它。但是,我一直遇到以下错误,在下面的末尾:

processing file: C:/Users/VJ/test_slidify.Rmd
  |>>>>>>>>>>>>>                                                    |  20%
  ordinary text without R code

  |>>>>>>>>>>>>>>>>>>>>>>>>>>                                       |  40%
label: simple-plot (with options) 
List of 4
 $ fig.height: num 6
 $ fig.align : chr "center"
 $ message   : logi FALSE
 $ indent    : chr "    "

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>                          |  60%
  ordinary text without R code

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>             |  80%
label: table (with options) 
List of 3
 $ results: chr "asis"
 $ comment: logi NA
 $ indent : chr "    "

  |>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>| 100%
  ordinary text without R code


output file: C:\Users\VJ\test_slidify.md

Error in mapply(function(i, j) doc[i:j], begin, end, SIMPLIFY = FALSE) : 
  Zero-length inputs cannot be mixed with those of non-zero length

我已经下载了最新版本的 slidify 和其他必需的软件包,但仍然遇到此错误。感谢任何帮助。最后,slidify 是否只创建一个 .md 文件或一个 html 文件,就像在带有 knitr 的常规 Rmarkdown 中一样。我们如何将生成的 .md 文件转换为 html 文件。

4

1 回答 1

1

通过从 Slidify 网站上的示例中复制和粘贴,我遇到了同样的问题。这弄乱了文本编码,导致错误。我最终手动输入了示例,然后它完美地构建了 html 文件。另请注意,您需要使用“---”语法(不带引号)来分隔幻灯片。不这样做会导致其他人的构建崩溃。

于 2012-09-06T22:11:12.007 回答