That should work then, I confused myself how to properly document S3 methods
using Roxygen. Thanks for this.
Daniel
> Date: Thu, 23 Jul 2015 16:41:37 -0600
> Subject: Re: [R-pkg-devel] checking S3 generic/method consistency ... NOTE
> From: ucfa...@
Hi Daniel
You should only neee
#' @export
in your roxygen markup as roxygen (well recent versions anyway) are able to
do the right thing and work out what needs to go into the NAMESPACE file.
You don't need @method now, except in cases where there is ambiguity about
the method/class, which shoul
On 23.07.2015 23:21, Daniel Marcelino wrote:
Hi, I would like to know how you are calming down the R check. I've an issue
with the `head` method. I'm incorporating a head for data base, but nothing
that I add in the function file seems to be able to silence the R check. Below
is what I hav