Print an rsm.factor Object

DESCRIPTION:

Print an object of class rsm.factor on the chosen scale.

USAGE:

print.rsm.factor(x, ..., scale.print="natural") 

REQUIRED ARGUMENTS:

x
an rsm.factor (usually generated by rsm.design)

OPTIONAL ARGUMENTS:

scale.print
a character string indicating the scale of prints: possible values are "natural", "log" or "coded". rsm.factors are generated by rsm.design either on the log or natural scale. If the attribute log is TRUE, then setting scale.print = "natural" prints exp(x), while setting scale.print = "log" prints x. When the coded scale is requested, the center, low and high values are scaled via the attributes alpha and scale to 0,-1, and 1 respectively.

SIDE EFFECTS:

The factor is printed on the requested scale.

SEE ALSO:

, , .

EXAMPLES:

# compare the following results 
a.design <- rsm.design(3,log=T) 
a.design$A 
print(a.design$A,scale='natural') 
print(a.design$A,scale='log') 
print(a.design$A,scale='coded')