powered by
Plots of multivariate probability distributions (with m=2).
# S3 method for epdfmv plot(x, use.plot3d=FALSE, xlab="x1", ylab="x2", npoints=30, ..., all=FALSE) # S3 method for ecdfmv plot(x, use.plot3d=FALSE, xlab="x1", ylab="x2", npoints=30, ...)
An epdfmv or ecdfmv object.
If true, use a 3d plot, otherwise, use a 2d plot.
The x label.
The y label.
The number of grid points in each direction.
Other arguments.
If true, plot all combinations.
epdfmv, ecdfmv
# NOT RUN { #plot an empirical multivariate cumulative distribution function #(with m=2) data (trees) attach (trees) ecdfmv.f = ecdfmv (cbind (Height, Volume) ) plot (ecdfmv.f, TRUE) # }
Run the code above in your browser using DataLab