Personnel I created a package in R, is already with the documentation, with @export
in each function, I ask the Rstudio
to create the package and everything right. But when I import the package it reads the documents all, it helps of all functions, but does not read the function properly. That is, ?funcao
worked, but funcao(x)
says that it did not find the function.
Issue 1
Being accurate, this is how I have the functions inside NAMESPACE
created by roxygen2
like this:
S3method(plot,polygon)
export(convex.verification)
export(polygon.intersection)
export(polygon.transformation)
export(polygonal.correlation)
export(polygonal.covariance)
export(polygonal.mean)
And the function that is not recognized at check is only plot.polygon
Does anyone have an idea whatsoever?