Re: [R-pkg-devel] spurious rchk warning

2017-11-21 Thread Patrick Perry
AM > On Mon, Nov 20, 2017 at 8:34 PM, Patrick Perry<ppe...@stern.nyu.edu> wrote: >> One of my packages has what I believe to be spurious rchk warnings: >> >> From >> https://raw.githubusercontent.com/kalibera/cran-checks/master/rchk/results/utf8.out >> &

[R-pkg-devel] spurious rchk warning

2017-11-20 Thread Patrick Perry
One of my packages has what I believe to be spurious rchk warnings: From https://raw.githubusercontent.com/kalibera/cran-checks/master/rchk/results/utf8.out Package utf8 version 1.1.0 Package built using 73757/R 3.5.0; x86_64-pc-linux-gnu; 2017-11-20 22:02:23 UTC; unix Checked with rchk

Re: [R-pkg-devel] tibbles are not data frames

2017-09-26 Thread Patrick Perry
ports both tibbles and data frames, then you either have to avoid row names and drop = TRUE, or else you have to call `as.data.frame` on the input. This goes the other way, too. If you want to write a tidyverse function that also accepts data.frames, then you should call as_tibble on the input, othe