Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 knitr 在 R 中生成报告。所以基本上我有一个数据集,做一些预处理,然后调用 knitr 输出一个 html 报告。这意味着整个工作流程由几个 R 代码文件和一些 .Rhtml 模板组成,这些模板是以后生成报告所需的。
我想将所有这些包装到一个 R 包中。只有 .r 文件,我只需运行 package.skeleton() 并开始..
但是,我该如何处理 .Rhtml 文件。构建 R 包时处理这些问题的正确方法是什么?
谢谢,
Ben Bolkers 回答:将它们放在 inst 目录中的一个目录中,然后使用 system.file() 来检索它们。