将Rmarkdown文件转为pdf文件
knitr包只能够将R markdown文件转为html格式,若想要将其转化为pdf格式,还要安装另一个包
# Install and load package install.packages("rmarkdown") library("rmarkdown") # Convert render("../Your_MD_File.md", output_format="pdf_document")
Reference
http://stackoverflow.com/questions/11025123/how-to-convert-r-markdown-to-pdf
posted on 2015-04-18 08:46 Forever_YCC 阅读(3266) 评论(0) 编辑 收藏 举报