View source: R/not.environment.R
not.environment | R Documentation |
Check if entry is not an environment object
not.environment(x)
x |
vector entry |
a boolean value to indicate if entry is an environment
test.env <- new.env()
test.notenv <- list(t=1)
not.environment(test.env) # FALSE
not.environment(test.notenv) # TRUE
if(not.environment(test.notenv)) message("yes") # yes
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.