I encountered the same problem as in NAMESPACE not generated by roxygen2. Skipped
I get
Warning message:
NAMESPACE not generated by roxygen2. Skipped.
at the end of the R CMD check
using devtools::check
.
Here is how my NAMESPACE
looks like (I exported all my functions)
export(prep)
export(read_data)
export(file_merge)
export(non_recursive_mc)
export(modified_recursive_mc)
export(hybrid_recursive_mc)
importFrom(dplyr,"%>%")
importFrom(psych,"harmonic.mean")
exportPattern("^[^\\.]")
If I put this comment # Generated by roxygen2 (4.1.1): do not edit by hand
in the beginning of the NAMESPACE
I get an ERROR
when running devtools::check
saying that it does know %>%
.
How can I solve this warning message?
Best
Ayala