gpt4 book ai didi

r - PAM 聚类 - 使用另一个数据集中的结果

转载 作者:行者123 更新时间:2023-11-30 08:54:19 26 4
gpt4 key购买 nike

我已经使用pam函数(R中的集群包)成功运行了围绕 Medoids 的分区,现在,我想使用结果将新的观察结果归因于之前定义的集群/medoids 。

解决问题的另一种方法是,考虑到 pam 函数已找到的 k 个簇/中心点,这更接近于未发现的附加观察结果在初始数据集中?

x<-matrix(c(1,1.2,0.9,2.3,2,1.8,
3.2,4,3.1,3.9,3,4.4),6,2)
x
[,1] [,2]
[1,] 1.0 3.2
[2,] 1.2 4.0
[3,] 0.9 3.1
[4,] 2.3 3.9
[5,] 2.0 3.0
[6,] 1.8 4.4
pam(x,2)

观测值 1、3 和 5 以及 2、4 和 6 聚集在一起,观测值 1 和 6 是中心点:

Medoids:
ID
[1,] 1 1.0 3.2
[2,] 6 1.8 4.4
Clustering vector:
[1] 1 2 1 2 1 2

现在,y 应该归因于/关联到哪个簇/中心点?

y<-c(1.5,4.5)

哦,如果您有多个解决方案,计算时间在我拥有的大数据集中很重要。

最佳答案

一般对 k 个集群尝试此操作:

k <- 2 # pam with k clusters
res <- pam(x,k)

y <- c(1.5,4.5) # new point

# get the cluster centroid to which the new point is to be assigned to
# break ties by taking the first medoid in case there are multiple ones

# non-vectorized function
get.cluster1 <- function(res, y) which.min(sapply(1:k, function(i) sum((res$medoids[i,]-y)^2)))

# vectorized function, much faster
get.cluster2 <- function(res, y) which.min(colSums((t(res$medoids)-y)^2))

get.cluster1(res, y)
#[1] 2
get.cluster2(res, y)
#[1] 2

# comparing the two implementations (the vectorized function takes much les s time)
library(microbenchmark)
microbenchmark(get.cluster1(res, y), get.cluster2(res, y))

#Unit: microseconds
# expr min lq mean median uq max neval cld
# get.cluster1(res, y) 31.219 32.075 34.89718 32.930 33.358 135.995 100 b
# get.cluster2(res, y) 17.107 17.962 19.12527 18.817 19.245 41.483 100 a

扩展到任意距离函数:

# distance function
euclidean.func <- function(x, y) sqrt(sum((x-y)^2))
manhattan.func <- function(x, y) sum(abs(x-y))

get.cluster3 <- function(res, y, dist.func=euclidean.func) which.min(sapply(1:k, function(i) dist.func(res$medoids[i,], y)))
get.cluster3(res, y) # use Euclidean as default
#[1] 2
get.cluster3(res, y, manhattan.func) # use Manhattan distance
#[1] 2

关于r - PAM 聚类 - 使用另一个数据集中的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41294612/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com