ibox {iplots}R Documentation

Interactive Box Plot

Description

This function creates a new interactive box plot from the given data.

Usage

ibox(x, y=NULL, ...)

Arguments

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.

Details

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:

alterningLabels

Whether lables should be placed alternately at the top and at the bottom.

Value

Resulting plot object.

See Also

ihist, ibar, iplot.list, iplot.opt

Examples

data(iris)
attach(iris)
ibox(Petal.Length)
ibox(Sepal.Length,Species)

[Package iplots version 1.1-8 Index]