Check results vary. With win-builder both R-release (R 4.4.1) and R-devel I get
* checking S3 generic/method consistency ... NOTE
Apparent methods for exported generics not registered:
esa.plot
See section 'Registering S3 methods' in the 'Writing R Extensions'
manual.
But there's no such Note o
Hmm, the following doesn't seem to trigger warnings or notes in `R CMD
check --as-cran` (R 4.4.1; linux)
esa <- function(x) {
UseMethod("esa")
}
esa.plot <- function(y) {
.Deprecated("esaPlot")
esaPlot(y)
}
esaPlot <- function(y) {
message("esaPl