plot3D             package:compositions             R Documentation

_p_l_o_t _i_n _3_D _b_a_s_e_d _o_n _r_g_l

_D_e_s_c_r_i_p_t_i_o_n:

     3-dimensional plots, which can be rotated and zoomed in/out

_U_s_a_g_e:

     plot3D(x,...)
     ## Default S3 method:
     plot3D(x,...,add=FALSE,bbox=TRUE,axes=FALSE,cex=1,size=cex)

_A_r_g_u_m_e_n_t_s:

       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

_D_e_t_a_i_l_s:

     The function provides a generic interface for 3-dimensional
     plotting in analogy to the 2d-plotting interface of plot, using
     rgl package.

_V_a_l_u_e:

     Nothing

_A_u_t_h_o_r(_s):

     K.Gerald v.d. Boogaart <URL: http://www.stat.boogaart.de>

_S_e_e _A_l_s_o:

     'points3D', 'plot', 'plot3D.rmult',

     'plot3D.acomp','plot3D.rcomp',, 'plot3D.aplus','plot3D.rplus'

_E_x_a_m_p_l_e_s:

     x <- cbind(rnorm(10),rnorm(10),rnorm(10))
     plot3D(x)
     data(SimulatedAmounts)
     plot3D(sa.lognormals,cex=4,col=1:nrow(sa.lognormals))

