

   TThhee DDeeffaauulltt SSccaatttteerrpplloott FFuunnccttiioonn

        plot.default(x, y=NULL, type = "p", col = par("fg"), bg = NA,
                     pch = par("pch"), xlim = NULL, ylim = NULL, log = "",
                     axes = TRUE, frame.plot = axes, panel.first = NULL,
                     panel.last = NULL, ann = par("ann"), main = NULL,
                     sub = NULL, xlab = NULL, ylab = NULL, cex = par("cex"),
                     lty = par("lty"), lwd = par("lwd"), ...)

   VVaalluuee::

        This function is invoked for its side effect of drawing
        a scatter plot in the active graphics window.

   RReeffeerreenncceess::

        Cleveland, W. S. (1985).  The Elements of Graphing
        Data.  Monterey, CA: Wadsworth.

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

        `plot', `plot.window', `xy.coords'.

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

        data(cars)
        Speed <- cars$speed
        Distance <- cars$dist
        plot(Speed, Distance, panel.first = grid(8,8),
             pch = 0, cex = 1.2, col = "blue")
        plot(Speed, Distance,
             panel.first = lines(lowess(Speed, Distance), lty = "dashed"),
             pch = 0, cex = 1.2, col = "blue")

