is.complete: Check whether a pim environment is complete

Description Usage Arguments Value Note Examples

View source: R/is.complete.R

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

1

Arguments

x

an object of class pim.environment

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

1
2
3
4
5
6
7
# 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)

pim documentation built on May 2, 2019, 6:51 p.m.