| Line 4... |
Line 4... |
| 4 |
\description{
|
4 |
\description{
|
| 5 |
Produce box-and-whisker plot(s) of the given (grouped) values using
|
5 |
Produce box-and-whisker plot(s) of the given (grouped) values using
|
| 6 |
formula notation.
|
6 |
formula notation.
|
| 7 |
}
|
7 |
}
|
| 8 |
\usage{
|
8 |
\usage{
|
| 9 |
\method{boxplot}{formula}(formula, data = NULL, \dots, subset, na.action)
|
9 |
\method{boxplot}{formula}(formula, data = NULL, \dots, subset)
|
| 10 |
}
|
10 |
}
|
| 11 |
\arguments{
|
11 |
\arguments{
|
| 12 |
\item{formula}{a formula, such as \code{y ~ x}.}
|
12 |
\item{formula}{a formula, such as \code{y ~ x}.}
|
| 13 |
\item{data}{a data.frame (or list) from which the variables in
|
13 |
\item{data}{a data.frame (or list) from which the variables in
|
| 14 |
\code{formula} should be taken.}
|
14 |
\code{formula} should be taken.}
|
| 15 |
\item{\dots}{arguments to the default boxplot method and graphical
|
15 |
\item{\dots}{arguments to the default boxplot method and graphical
|
| 16 |
parameters may also be passed as arguments, see \code{\link{par}}.}
|
16 |
parameters may also be passed as arguments, see \code{\link{par}}.}
|
| 17 |
\item{subset}{an optional vector specifying a subset of observations
|
17 |
\item{subset}{an optional vector specifying a subset of observations
|
| 18 |
to be used for plotting.}
|
18 |
to be used for plotting.}
|
| 19 |
%% <FIXME>
|
- |
|
| 20 |
%% Remove in 1.4.0.
|
- |
|
| 21 |
\item{na.action}{deprecated.}
|
- |
|
| 22 |
%% </FIXME>
|
- |
|
| 23 |
}
|
19 |
}
|
| 24 |
\details{
|
20 |
\details{
|
| 25 |
This is a method of the generic function \code{\link{boxplot}}. It
|
21 |
This is a method of the generic function \code{\link{boxplot}}. It
|
| 26 |
operates by setting up the data from the formula specification, and
|
22 |
operates by setting up the data from the formula specification, and
|
| 27 |
then calling \code{\link{boxplot.default}}.
|
23 |
then calling \code{\link{boxplot.default}}.
|