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