TITLE(box @@ Draw a Box around a Plot)
USAGE(
box(DOTS)
)
ALIAS(box)
ARGUMENTS(
ARG(DOTS @@ the graphical parameters LANG(bty),
LANG(lty) and LANG(col) can be specified as arguments
to this function.)
)
VALUE(
This function is invoked for its side effect which is to
draws a box around the current plot in the given color
and linetype.  The LANG(bty) parameter determines
the type of box drawn.  See LANG(par) for details.
)
SEEALSO(
LANG(LINK(rect)) for drawing of arbitrary rectangles.
)
EXAMPLES(
plot(1:7,abs(rnorm(7)), type='h', axes = F)
axis(1, labels = letters[1:7])
box(lty='137', col = 'red')
)
