[R] Problem R markdown document

2015-08-27 Thread Conklin, Mike (GfK)
I have successfully done this many times using RStudio's rmarkdown capabilities and knitting the document to HTML or Word. However, I am running into this error today. C:/Program Files/RStudio/bin/pandoc/pandoc FusionTestsAugust25.utf8.md --to docx --from

Re: [R] Problem R markdown document

2015-08-27 Thread boB Rudis
Try increasing the memory for pandoc via knitr YAML options: -- title: TITLE output: html_document: pandoc_args: [ +RTS, -K64m, -RTS ] --- ref: http://stackoverflow.com/a/28015894/1457051 you can bump up those #'s IIRC, too, if they don't work at first. On Thu, Aug 27,