bubbleplot | R Documentation |
Draws bubbleblots – trivariate plots where the third dimension is mapped to the size of the points drawn on the screen.
bubbleplot(x, data = NULL, ...)
## S3 method for class 'formula'
bubbleplot(
x,
data = NULL,
maxsize = 3,
bubblekey = TRUE,
panel = panel.bubbleplot,
groups = NULL,
subset = TRUE,
drop.unused.levels = lattice.getOption("drop.unused.levels"),
...,
outer,
allow.multiple
)
x |
A formula of the form |
data |
A data.frame, list or environment wherein the formula and groups arguments can be evaluated. |
... |
Further arguments to pass to |
maxsize |
Maximum size (in cex) for the bubbles. |
bubblekey |
Set to |
panel |
See |
groups |
See |
subset |
See |
drop.unused.levels |
See |
outer |
Ignored. |
allow.multiple |
Ignored. |
An object of class "trellis"
. The
update
method can be used to
update components of the object and the
print
method (usually called by
default) will plot it on an appropriate plotting device.
Johan Larsson
bubbleplot(disp ~ hp * wt, groups = cyl, data = mtcars, auto.key = TRUE)
bubbleplot(disp ~ hp * mpg | factor(cyl), groups = gear, data = mtcars,
auto.key = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.