imosaic {iplots} | R Documentation |
This function creates a new interactive mosaic plot from the given data.
imosaic(...)
... |
All unnamed parameters are treated as variables to
display. Additional parameters are passed to
|
The plot can be used either in the form imosaic(df)
to plot
a list or data frame of variables contained in df
or
imosaic(x, y, z)
to plot variables x
, y
and
z
.
Additional parameters:
The default value of this variable is changed
here. For a description see iplot.opt
.
Resulting plot object.
ihist
, ibar
, iplot.list
,
iplot.opt
library(MASS)
data(Cars93)
attach(Cars93)
imosaic(AirBags,Cylinders,Origin)
imosaic(AirBags,Cylinders,Origin,type="mul")
iplot.location(300,100,TRUE)