base::assign(“.ptime”, proc.time(), pos = “CheckExEnv”) ERROR when using devtools::check

£可爱£侵袭症+ 提交于 2019-12-05 20:33:28

I found this question when googling this exact error. I think I understand now why it occurred: Roxygen actually executes the code in the @examples section, and my code included undeclared objects and gave this exact error when running check.

Quick solution: remove the offending lines of code from the @examples section. Or, a more considerate solution is to enclose the example code within \dontrun{...}.

See ?examples for more details on this as well as other options.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!