

   FFoorrmmuullaa NNoottaattiioonn ffoorr SSccaatttteerrpplloottss

        plot.formula(formula, data = NULL, subset, na.action, ..., ask = TRUE)
        plot(y ~ x, ...)

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

    formula: a `formula', such as `y ~ x'.

       data: a data.frame (or list) from which the variables in
             `formula' should be taken.

     subset: an optional vector specifying a subset of observa-
             tions to be used in the fitting process.

   na.action: a function which indicates what should happen
             when the data contain `NA's.  The default action
             (`na.omit') is to omit any incomplete observa-
             tions.  The alternative action `na.fail' causes
             `plot' to print an error message and terminate if
             there are any incomplete observations.

        ...: graphical parameters may also be passed as argu-
             ments, see `par'.

        ask: logical, see `par'.

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

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

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

        `plot.default', `plot.factor'.

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

        data(swiss)
        op <- par(mfrow=c(2,1))
        plot(Fertility ~ Education, data = swiss)
        plot(Fertility ~ Education, data = swiss, subset = Education < 20)
        par(op)

