I would like to check if the current environment is the global environment in R. However, direct comparison doesn't seem to work with evironments. What is the best way to do this?
#doesn't work
sys.frame() == .GlobalEnv
|
I would like to check if the current environment is the global environment in R. However, direct comparison doesn't seem to work with evironments. What is the best way to do this?
|
|||
|
Matthew Plourde's solution:
You can also check names, though this might be less reliable:
|
|||||
|
identical.==is for vector comparison. – Matthew Plourde Jan 23 at 23:48