I have created a function plot.tukey
that builds a custom graphic using the base
plotting tools, overlaying multiple plot
calls with par(new=TRUE)
.
When I documented with roxygen2
, it added an S3method
wrapper on the function to NAMESPACE
# Generated by roxygen2: do not edit by hand
S3method(plot,tukey)
export(color.randomHEX)
Question 1: Do I always want such an automatic wrapper?
What are the advantages / disadvantages of inheriting methods("plot")
?
Question 2: If I choose to NOT want this function to be tied to the S3method
, how do I tell roxygen2
?
Why did roxygen2
assume I wanted this function attached to S3
? Only based on the name of the function? Regardless, how do I tell roxygen2
to export AS-IS, without S3
as it did with the function color.randomHEX
?