グラフィックス参考実例集:chplot
(グラフィックス参考実例集に戻る。Rのグラフィックスパラメータを参照する。)
アドオンパッケージ chplot の chplot 関数は二変量データの凸包(プラス重心)と、その二つの周辺密度推定曲線を同時に描く。
example(chplot) より。
> library(chplot) > data(hdr) > chplot(hdr, log = "x")
# 点の散布図を描く > chplot(hdr,log="x", chull=F, plot.points=T)
> data(iris) > chplot(iris[, c(1, 2, 5)], bw = TRUE, legend.control(cex = 0.6))