Learn R Programming

rENA (version 0.3.0)

is.qe.data: Check if an object is of class 'qe.data'

Description

This function checks if an object is of class 'qe.data'.

Usage

is.qe.data(x)

Value

A logical value. TRUE if the object is of class 'qe.data', otherwise FALSE.

Arguments

x

An object. The object to be checked.

Examples

Run this code
library(data.table)

dt <- data.table(ID = 1:5)
class(dt) <- c("qe.data", class(dt))
is.qe.data(dt) # Should return TRUE

Run the code above in your browser using DataLab