View source: R/depth.contours.r
| depth.contours | R Documentation | 
Builds the data depth contours for 2-dimensional data.
depth.contours(data, depth, 
              main = "", xlab="", ylab = "", 
              drawplot = T, frequency=100, levels = 10,
              col = "red",
              ...)
data | 
 2-dimensional numeric data frame or matrix  | 
depth | 
 the name of the depth function. The list of the supported depths and described in the topic   | 
main | 
 an overall title for the plot: see   | 
xlab, ylab | 
 labels of the axes  | 
drawplot | 
 if set to false, the contours are built on the existing plot.  | 
frequency | 
 number of points on each direction, x and y. Impacts the smoothness of the contours.  | 
levels | 
 numeric vector of levels at which to draw contour lines. 
If the vector contains only ONE element, the levels are generated automatically as   | 
col | 
 color, used to draw points and contours  | 
... | 
 additional parameters passed to the depth functions and to   | 
depth., 
depth.contours.ddalpha, 
depth.graph.
## Not run: 
par(mfrow = c(2,2))
data(hemophilia)
depth.contours(hemophilia[,1:2], depth = "none", main = "data")
for (depth in c("zonoid", "Mahalanobis", "projection", "spatial")){
  depth.contours(hemophilia[,1:2], depth = depth, main = depth)
}
for (depth in c("halfspace", "simplicial", "simplicialVolume")){
  depth.contours(hemophilia[,1:2], depth = depth, main = depth, exact = T)
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.