Skip to content
Prev 8933 / 12125 Next

[R-pkg-devel] Package internal function / Undocumented code objects warning

You have included the @export tag in the roxygen block for vlookup_internal(), which will place it in the NAMESPACE with an export directive, but also included @noRd which prevents the creation of the .Rd file for the function. So these two are in conflict. Remove the @export tag from vlookup_internal and when you re-run devtools::document() it should no longer be in the NAMESPACE.

Cheers,
Andy Teucher