我正在尝试复制这个出色的页面。
当我从 GitHub编织markdown 文件retail.Rmd
时,使用RStudio (v0.98.729)
,我收到错误消息:
输出文件:retail.knit.md
G:/R/RStudio/bin/pandoc/pandoc retail.utf8.md --to html --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-implicit_figures --output retail.html --filter G:/R/RStudio/bin /pandoc/pandoc-citeproc --section-divs --smart --self-contained --template G:\R\library\rmarkdown\rmd\h\default.html --variable jquery:G:\R\library\ rmarkdown\rmd\h\jquery-1.10.2 --variable bootstrap:G:\R\library\rmarkdown\rmd\h\bootstrap-3.0.3 --variable theme:G:\R\library\rmarkdown\rmd\ h\bootstrap-3.0.3\css\bootstrap.min.css --no-highlight --variable highlightjs=G:\R\library\rmarkdown\rmd\h\highlight --mathjax --variable mathjax-url: https ://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML
堆栈空间溢出:当前大小 16777216 字节。使用`+RTS -Ksize -RTS'来增加它。
错误:pandoc 文档转换失败 执行停止
我怀疑该错误与基础数据的大小(8.6MB)有关,因为当我执行以下操作并再次编织时,错误消息消失了:
french_industry_xts <- french_industry_xts[1:10000,]
如错误消息所示,如何增加堆栈空间的大小?