This help topic is for R version 2.0.0. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/graphics/html/plot.dataframe.html
plot.data.frame {graphics}R Documentation

Plot Method for Data Frames

Description

plot.data.frame, a method of the plot generic, uses stripchart for one variable, plot.default (scatterplot) for two variables, and pairs (scatterplot matrix) otherwise.

Usage

## S3 method for class 'data.frame'
plot(x, ...)

Arguments

x

object of class data.frame.

...

further arguments to stripchart, plot.default or pairs.

See Also

data.frame

Examples

plot(OrchardSprays[1], method="jitter")
plot(OrchardSprays[c(4,1)])
plot(OrchardSprays)

[Package graphics version 2.0.0 ]