plot3D {compositions} | R Documentation |
3-dimensional plots, which can be rotated and zoomed in/out
plot3D(x,...) ## Default S3 method: plot3D(x,...,add=FALSE,bbox=TRUE,axes=FALSE,cex=1,size=cex,col=par("col"))
x |
an object to be plotted, e.g. a data frame or a data matrix |
... |
additional plotting parameters as described in
rgl.material |
add |
logical, adding or new plot |
bbox |
logical, whether to add a bounding box |
axes |
logical, whether to plot an axes of coordinates |
cex |
size of the plotting symbol |
size |
size of the plotting symbol, only size or cex should be used |
col |
the color |
The function provides a generic interface for 3-dimensional plotting in analogy to the 2d-plotting interface of plot, using rgl package.
Nothing
K.Gerald v.d. Boogaart http://www.stat.boogaart.de
plot3D.acomp
,plot3D.rcomp
,,
plot3D.aplus
,plot3D.rplus
x <- cbind(rnorm(10),rnorm(10),rnorm(10)) plot3D(x) data(SimulatedAmounts) plot3D(sa.lognormals,cex=4,col=1:nrow(sa.lognormals))