标签: r packages infix-notation
我正在编写一个包含如下函数的包:
"%IN%" <- function(x, table) x & match(x, table, nomatch = 0) > 0
当我Build & Reload包(我使用RStudio)时,此功能不可用,而不是包中定义的所有其他功能。
Build & Reload
我如何使这项工作?
答案 0 :(得分:2)
解决方案需要安装roxygen2并修改NAMESPACE文件以包含以下行:
roxygen2
NAMESPACE
export("%IN%")