View source: R/qedata_classes.R
| is.qe.data | R Documentation |
This function checks if an object is of class 'qe.data'.
is.qe.data(x)
x |
An object. The object to be checked. |
A logical value. TRUE if the object is of class 'qe.data', otherwise FALSE.
library(data.table)
dt <- data.table(ID = 1:5)
class(dt) <- c("qe.data", class(dt))
is.qe.data(dt) # Should return TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.