ibox {iplots} | R Documentation |
This function creates a new interactive box plot from the given data.
ibox(x, y=NULL, ...)
x |
Vector of numbers or data frame containing the variables |
y |
A factor to specify groups for y-by-x boxplot |
... |
All additional parameters are passed to
iplot.opt . Many of the parameters used in
plot are supported.
|
Creates either a regular boxplot (if y
is not specified) or
`x-by-y boxplot (if y
is specified). In the latter case both
x
and y
must be of the same length.
Additional parameters:
Resulting plot object.
ihist
, ibar
, iplot.list
,
iplot.opt
data(iris) attach(iris) ibox(Petal.Length) ibox(Sepal.Length,Species)