使PDF帮助文件自动打开

时间:2010-05-31 05:31:58

标签: html r

在R中,如果我们将help_type函数的help()参数设置为html并调用它,它将自动在浏览器中打开html帮助。但是,help_type = 'pdf'不是这种情况。仅生成pdf。如何在生成帮助文件后自动创建?我相信pdf帮助是有些人喜欢的,因为它可以正确显示数学公式,html帮助不。

1 个答案:

答案 0 :(得分:3)

根据aL3xa评论,在Windows下,您可以使用shell.exec查看pdf。

help("plot", help_type="pdf") # help file is saved in working directory
shell.exec(file.path(getwd(), "plot.pdf"))