Re: [R-pkg-devel] S4 methods

2020-06-02 Thread Edgar Josymar Torrejón-Magallanes
Thank you so much for your help. I delete the exporClass and the warnings and error have disappeared. Regards El mar., 2 jun. 2020 a las 4:28, Gábor Csárdi () escribió: > You export these S4 classes from your package: > > https://github.com/cran/sizeMat/blob/c4d257a9108cde3ddb6e8eb2072cd567ae85

Re: [R-pkg-devel] S4 methods

2020-06-02 Thread Gábor Csárdi
You export these S4 classes from your package: https://github.com/cran/sizeMat/blob/c4d257a9108cde3ddb6e8eb2072cd567ae85b5c8/NAMESPACE#L13-L15 But these are not actually S4 classes, AFAICT. Remove the `@exportClass` tags here: https://github.com/cran/sizeMat/blob/c4d257a9108cde3ddb6e8eb2072cd567ae

Re: [R-pkg-devel] S4 methods

2020-06-02 Thread Sebastian Meyer
This is a new check in R-devel. The NEWS say: > R CMD check etc now warn when a package exports non-existing S4 classes or > methods, also in case of no "methods" presence In your case, the NAMESPACE contains > exportClasses(classify) > exportClasses(gonad_mature) > exportClasses(morphMat) b