从 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 文件。