datadigest icon indicating copy to clipboard operation
datadigest copied to clipboard

explorer() with addEnv=TRUE will not autoload data frames named "a" or "c"

Open bzkrouse opened this issue 6 years ago • 0 comments

a <- mtcars
b <- iris
c <- airquality

works as expected:

explorer(data=list(a,b, c), addEnv=FALSE)

image

does not work as expected ("a" and "c" are not loaded):

explorer(addEnv=TRUE)

image

We believe this is an issue with the package build, as explorer() function works correctly outside of package. This bug also occurs in codebookApp(), where data frames in the R session are auto-loaded into the app.

bzkrouse avatar Aug 29 '18 19:08 bzkrouse