将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

你可能感兴趣的:(将Rmarkdown文件转为pdf文件)