not.data | R Documentation |
Opposite of is.data.frame(). Check if entry is not a data object
not.data(x)
x |
vector entry |
a boolean value to indicate if entry is a data table
test.dt <- data.frame(ID=1:200,Type="RPKG.net")
test.notenv <- list(t=1)
is.data.frame(test.dt) # TRUE
not.data(test.dt) # FALSE
not.data(test.notenv) # TRUE
if(not.data(test.dt)) message("yes") # NULL
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.