Skip to content
Prev 378715 / 398502 Next

Ghost variables

Those messages say that some code (presumably in your script) is 
referring to columns, not variables, with those names.  That isn't a 
message coming from base R, it's coming from some package that you are 
using, I think "tibble".

You can turn those warnings into errors by running

options(warn=2)

before your script, and then the script will die at the first warning.

Duncan Murdoch
On 25/02/2019 3:45 p.m., JLucke at ria.buffalo.edu wrote: