

   XX--YY PPlloottttiinngg

        plot(x, y, xlim=range(x), ylim=range(y), type="p",
                main, xlab, ylab, ...)
        plot(y ~ x, ...)

   AArrgguummeennttss::

        x,y: the coordinates of points in the plot. Alterna-
             tively, a single plotting structure can be pro-
             vided.

   xlim,ylim: the ranges to be encompased by the x and y axes.

       type: what type of plot should be drawn. Possible types
             are

                * `"p"' for points,

                * `"l"' for lines,

                * `"b"' for both,

                * `"o"' for both ``overplotted'',

                * `"h"' for ``histogram'' like vertical lines,

                * `"s"' for steps,

                * `"S"' for other steps,

                * `"n"' for no plotting.

       main: an overall title for the plot.

       xlab: a title for the x axis.

       ylab: a title for the y axis.

        ...: graphical parameters can be given as arguments to
             `plot'.

   DDeessccrriippttiioonn::

        Generic function for plotting of R objects.  For more
        details about the graphical parameter arguments, see
        `par'.

        A longer description will go here eventually.

   SSeeee AAllssoo::

        `plot.default', `plot.formula' and other methods;
        `points', `lines', `par'.

   EExxaammpplleess::

        data(cars)
        plot(cars)
        lines(lowess(cars))

