Check if object does not exists
Examples
go = 7
not.exists("exis") # TRUE
#> [1] TRUE
not.exists("go") # FALSE
#> [1] TRUE
if(not.exists('hallo')) message("yes") # NULL
#> yes
Check if object does not exists
go = 7
not.exists("exis") # TRUE
#> [1] TRUE
not.exists("go") # FALSE
#> [1] TRUE
if(not.exists('hallo')) message("yes") # NULL
#> yes