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
|
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:
Whether lables should be placed alternately at the top and at the bottom.
Resulting plot object.
ihist
, ibar
, iplot.list
,
iplot.opt
data(iris)
attach(iris)
ibox(Petal.Length)
ibox(Sepal.Length,Species)