在R中,如果将help()函数的help_type参数设置为html并调用它,它将在浏览器中自动打开html帮助.但是,对于help_type =’pdf’并非如此.仅生成pdf.生成帮助文件后如何自动使它?我相信pdf帮助是某些人的首选,因为它可以正确显示数学公式,而html帮助则不行.
最佳答案
根据aL3xa注释,在Windows下,您可以使用shell.exec查看pdf.
原文链接:https://www.f2er.com/html/530677.htmlhelp("plot",help_type="pdf") # help file is saved in working directory
shell.exec(file.path(getwd(),"plot.pdf"))