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.
我在一个 R 包上工作,它现在使用 Roxygen 作为文档。如果用户想要安装新版本的包(不在 CRAN 上,只是在 GitHub 上),他们将不得不这样做
git pull
然后在 R 会话中
devtools::document() install.packages('.', repo = NULL)
Roxygen 引入了另一个对 R 用户来说并不明显的步骤。有什么方法可以将devtools::document()步骤添加到安装/编译步骤中?
devtools::document()