TITLE(plot @@ X-Y Plotting)
USAGE(
plot(x, y, xlim=range(x), ylim=range(y), type="p",
        main, xlab, ylab, DOTS)
)
ALIAS(plot)
ARGUMENTS(
ARG(x,y @@ the coordinates of points in the plot.
Alternatively, a single plotting structure can
be provided.)
ARG(xlim,ylim @@ the ranges to be encompased by the x and y axes.)
ARG(type @@ what type of plot should be drawn.
Possible types are 
LANG("p") for BOLD(p)oints,
LANG("l") for BOLD(l)ines,
LANG("b") for BOLD(b)oth, LANG("o") for both "BOLD(o)verplotted",
LANG("h") for "BOLD(h)istogram" like vertical lines,
LANG("s") for BOLD(s)teps,
LANG("S") for other BOLD(s)teps,
 and
LANG("n") for no plotting.)
ARG(main @@ an overall title for the plot.)
ARG(xlab @@ a title for the x axis.)
ARG(ylab @@ a title for the y axis.)
ARG(DOTS @@ graphical parameters can be given as arguments to LANG(plot).)
)
DESCRIPTION(
Generic function for plotting of R objects.
For more details about the graphical parameter arguments, see LANG(LINK(par)).
BLANK	    
A longer description will go here eventually.
)
SEEALSO(
LANG(LINK(plot.default)), LANG(LINK(points)), LANG(LINK(lines)), LANG(LINK(par)).
)	
EXAMPLES(
plot(cars)
lines(lowess(cars))
)
