Skip to contents

Is the object a ‘mirai’.

Usage

is_mirai(x)

Arguments

x

an object.

Value

Logical TRUE if ‘x’ is of class ‘mirai’, FALSE otherwise.

Examples

if (interactive()) {
# Only run examples in interactive R sessions

df <- data.frame()
m <- mirai(as.matrix(df), df = df)
is_mirai(m)
is_mirai(df)

}