Confidence Bound Plots

DESCRIPTION:

Creates a plot of confidence intervals or bounds for multiple comparisons from an object of class multicomp object.

USAGE:

plot.multicomp(x, ylabel=x$ylabel, href=0, uniform=T) 

REQUIRED ARGUMENTS:

x
an object that inherits from class "multicomp" (a table of confidence intervals or bounds).

OPTIONAL ARGUMENTS:

ylabel
a label for the response variable on which intervals are calculated. The default is the ylabel from the input multicomp object.
href
a reference line for the intervals. The default is 0.
uniform
a logical value, if TRUE and the plots fill more than one page, the scale will be uniform across pages.

VALUE:

none

SIDE EFFECTS:

a plot is created on the current graphics device.

SEE ALSO:

.

EXAMPLES:

lmout.fuel <- lm(Fuel~Type, data=fuel.frame) 
mcout.fuel <- multicomp(lmout.fuel, focus="Type") 
plot(mcout.fuel)