Re: [R-pkg-devel] dplyr usage inside another package

2015-08-10 Thread Jonathan Callahan
Thanks Jenny! Just the advice I was looking for. On Mon, Aug 10, 2015 at 4:40 PM, Jennifer Bryan wrote: > Hi Jonathan, > > Re: this note: no visible binding for global variable ‘datetime’ > > In programming and packages, it is recommended to use special versions of > dplyr’s single table verbs,

Re: [R-pkg-devel] dplyr usage inside another package

2015-08-10 Thread Jennifer Bryan
Hi Jonathan, Re: this note: no visible binding for global variable ‘datetime’ In programming and packages, it is recommended to use special versions of dplyr’s single table verbs, e.g., use `filter_()` as opposed to `filter()`. Note the underscore. The “underscore” functions use standard evalua

Re: [R-pkg-devel] dplyr usage inside another package

2015-08-10 Thread Uwe Ligges
On 11.08.2015 00:35, Jonathan Callahan wrote: Greetings, I'm using dplyr inside of another package with examples like this: data <- dplyr::filter(data, datetime >= trange[1], datetime <= trange[2]) When I run my package through R CMD check I get the following NOTES: monitorSubsetData: no vis