The R Project SVN R

Rev

Rev 32212 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
27442 ripley 1
\name{plot.data.frame}
2
\alias{plot.data.frame}
3
\title{Plot Method for Data Frames}
4
\description{
5
  \code{plot.data.frame}, a method of the \code{\link{plot}} generic,
6
  uses \code{\link{stripchart}} for \emph{one} variable,
7
  \code{\link{plot.default}} (scatterplot) for \emph{two} variables, and
8
  \code{\link{pairs}} (scatterplot matrix) otherwise.
9
}
10
\usage{
11
\method{plot}{data.frame}(x, \dots)
12
}
13
\arguments{
14
  \item{x}{object of class \code{data.frame}.}
15
  \item{\dots}{further arguments to \code{\link{stripchart}},
16
    \code{\link{plot.default}} or \code{\link{pairs}}.}
17
}
18
\seealso{
19
  \code{\link{data.frame}}
20
}
21
\examples{
22
data(OrchardSprays)
23
plot(OrchardSprays[1], method="jitter")
24
plot(OrchardSprays[c(4,1)])
25
plot(OrchardSprays)
26
}
27
\keyword{hplot}
28
\keyword{methods}