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,
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
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