Learn R Programming

pcalg (version 2.0-3)

fciAlgo-class: Class "fciAlgo"

Description

This class of objects is returned by the function fci to represent the estimated PAG. Objects of this class have methods for the functions plot, show and summary.

Arguments

Creation of objects

Objects can be created by calls of the form new("fciAlgo", ...), but are typically the result of fci(..).

Extends

Class "gAlgo".

See Also

fci, pcAlgo

Examples

Run this code
## look at slots of the class
showClass("fciAlgo")
## Suppose, fciObj is an object of class fciAlgo
## access slots by using the @ symbol
fciObj@amat   ## adjacency matrix
fciObj@sepset ## separation sets

## use show, summary and plot method
show(fciObj)
summary(fciObj)
plot(fciObj)

## Also look at the extensive examples in  ?fci !

Run the code above in your browser using DataLab