Print a Class "Loglin" Object

DESCRIPTION:

Print method for class Loglin.

USAGE:

print.Loglin(x, noLabels = F, ...) 

REQUIRED ARGUMENTS:

x
object of class "Loglin" to be printed.

OPTIONAL ARGUMENTS:

noLabels
if TRUE, cell labels are not printed. Otherwise cell labels are printed.
...
optional printing arguments.

VALUE:

NONE

SIDE EFFECTS:

Prints the class "Loglin" object.

DETAILS:

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

SEE ALSO:

, , .

EXAMPLES:

fit <- emLoglin(object = crime, margins = count~Visit.1:Visit.2) 
fit$paramIter 
print(fit$paramIter)              #same 
print.Loglin(fit$paramIter)       #same 
# Compare with 
paramIter(fit, 1:2) 
paramIter(fit)