Print a Class "cgm" Object

DESCRIPTION:

Print method for class cgm.

USAGE:

print.cgm(x, ...) 

REQUIRED ARGUMENTS:

x
object of class "cgm" to be printed.

OPTIONAL ARGUMENTS:

...
optional printing arguments.

VALUE:

NONE

SIDE EFFECTS:

Prints the class "cgm" object.

DETAILS:

This is a method for the function print for objects inheriting from class "cgm". See or for the general behavior of this function.

SEE ALSO:

, , .

EXAMPLES:

missmodel1 <- completeCgm(language[,c("LAN", "SEX", "HGPA", "FLAS")], 
            subset=!(is.na(SEX) | is.na(HGPA)),prior=1) 
cgmObject <- missmodel1$paramIter 
#The following are equivalent 
print(cgmObject) 
print.cgm(cgmObject) 
cgmObject