is.complete {pim} | R Documentation |
Check whether a pim environment is complete
Description
Objects of class pim.environment
can be created with
or without a poset. To check whether an object has a poset included,
you use the function is.complete
Usage
is.complete(x)
Arguments
x |
an object of class |
Value
a single value TRUE or FALSE
Note
This function is not written as an S4 method. Might be rewritten to S4 later on.
Examples
# the constructor returns an empty environment without poset
is.complete(new.pim.env())
# Constructing a pim environment with a poset
data("FEVData")
FEVenv <- new.pim.env(FEVData, compare="unique")
is.complete(FEVenv)
[Package pim version 2.0.2 Index]