ellipsoidhull
位于 cluster
包(package)。 说明
计算 “ellipsoid hull” 或 “spanning ellipsoid”,即最小体积的椭球体(二维中的‘area’),使得所有给定点都位于椭球体的内部或边界上。
用法
ellipsoidhull(x, tol=0.01, maxit=5000,
ret.wt = FALSE, ret.sqdist = FALSE, ret.pr = FALSE)
## S3 method for class 'ellipsoid'
print(x, digits = max(1, getOption("digits") - 2), ...)
参数
x |
维点为数字 矩阵。 |
tol |
Titterington 算法的收敛容差。将其设置为更小的值可能会大大增加所需的迭代次数,并且您可能还想增加 |
maxit |
给出算法的最大迭代步骤数的整数。 |
ret.wt , ret.sqdist , ret.pr |
指示是否应返回附加信息的逻辑, |
digits , ... |
|
细节
据说 “spanning ellipsoid” 算法源于 Pison 等人 (1999) 中的 Titterington(1976),他们将其用于clusplot.default
.
该问题可以看作是 “Min.Vol.” 椭球体的特例,其中更灵活和通用的实现是cov.mve
在里面MASS
包。
值
类 "ellipsoid"
的对象,本质上是具有多个组件的 list
,至少包括
cov |
协方差矩阵说明椭球体。 |
loc |
- 椭球中心的维位置。 |
d2 |
平均半径平方。此外, |
wt |
权重向量 iff |
sqdist |
平方距离向量 iff |
prob |
算法概率向量 iff |
it |
使用的迭代次数。 |
tol , maxit |
只是输入参数,见上文。 |
eps |
达到的公差是最大平方半径减去 。 |
ierr |
算法中的错误代码; |
conv |
逻辑指示是否收敛。这被定义为 |
例子
x <- rnorm(100)
xy <- unname(cbind(x, rnorm(100) + 2*x + 10))
exy. <- ellipsoidhull(xy)
exy. # >> calling print.ellipsoid()
plot(xy, main = "ellipsoidhull(<Gauss data>) -- 'spanning points'")
lines(predict(exy.), col="blue")
points(rbind(exy.$loc), col = "red", cex = 3, pch = 13)
exy <- ellipsoidhull(xy, tol = 1e-7, ret.wt = TRUE, ret.sq = TRUE)
str(exy) # had small 'tol', hence many iterations
(ii <- which(zapsmall(exy $ wt) > 1e-6))
## --> only about 4 to 6 "spanning ellipsoid" points
round(exy$wt[ii],3); sum(exy$wt[ii]) # weights summing to 1
points(xy[ii,], pch = 21, cex = 2,
col="blue", bg = adjustcolor("blue",0.25))
作者
Martin Maechler did the present class implementation; Rousseeuw et al did the underlying original code.
参考
Pison, G., Struyf, A. and Rousseeuw, P.J. (1999)
Displaying a Clustering with CLUSPLOT,
Computational Statistics and Data Analysis, 30, 381-392.
D.M. Titterington (1976) Algorithms for computing D-optimal design on finite design spaces. In Proc.\ of the 1976 Conf.\ on Information Science and Systems, 213-216; John Hopkins University.
也可以看看
predict.ellipsoid
这也是predict
方法用于ellipsoid
对象。volume.ellipsoid
以‘manual’为例ellipsoid
对象构造;
更远ellipse
从包装中ellipse
和ellipsePoints
从包装中sfsmisc
.
相关用法
- R summary.clara “clara”对象的摘要方法
- R diana 分裂分析聚类
- R pluton 钚同位素成分批次
- R votes.repub 总统选举中共和党候选人的投票
- R agnes 凝聚嵌套(层次聚类)
- R print.mona MONA 对象的打印方法
- R print.clara CLARA 对象的打印方法
- R mona 二元变量的单论分析聚类
- R plot.diana 分裂层次聚类图
- R plot.mona 一元分裂层次聚类的旗帜
- R bannerplot 绘图横幅(层次聚类)
- R plot.partition 数据集分区图
- R summary.agnes “agnes”对象的摘要方法
- R pltree 绘制层次聚类的聚类树
- R summary.mona “mona”对象的摘要方法
- R plantTraits 植物物种性状数据
- R plot.agnes 凝聚层次聚类图
- R print.agnes AGNES 对象的打印方法
- R chorSub Kola 数据 C 范围的子集
- R pam 围绕 Medoid 进行分区
- R volume.ellipsoid 计算(椭球体的)体积
- R clusplot (分区对象的)双变量聚类图
- R print.pam PAM 对象的打印方法
- R clara 集群大型应用程序
- R agnes.object 聚合嵌套 (AGNES) 对象
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Compute the Ellipsoid Hull or Spanning Ellipsoid of a Point Set。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。