gpt4 book ai didi

python - 从 Rpy2 到 R 聚类的馈送距离矩阵

转载 作者:太空宇宙 更新时间:2023-11-03 19:01:33 27 4
gpt4 key购买 nike

我在 numpy/scipy 中有以下定制的 NxN 距离矩阵:

dist_matrix =    array([array([5, 4, 2, 3, 2, 3]),
array([4, 5, 2, 3, 2, 2]),
array([2, 2, 5, 2, 2, 1]),
array([3, 3, 2, 5, 4, 2]),
array([2, 2, 2, 4, 5, 1]),
array([3, 2, 1, 2, 1, 5])])

如何使用这个矩阵在 R/ggplot2 中进行层次聚类并绘制树状图?如果我尝试通过 rpy2 将这个距离矩阵输入 R 中:

r.hclust(dist_matrix)

我收到错误:

   res = super(Function, self).__call__(*new_args, **new_kwargs)
rpy2.rinterface.RRuntimeError: Error in if (is.na(n) || n > 65536L) stop("size cannot be NA nor exceed 65536") :
missing value where TRUE/FALSE needed

最佳答案

R 函数 hclust() 正在获取“距离”对象:

from rpy2.robjects.packages import importr
stats = importr("stats")
d = stats.as_dist(m)
hc = r.hclust(d)

[注意:错误消息还暗示 rpy2 中可能存在转换错误。您可以提交错误报告吗?谢谢]

关于python - 从 Rpy2 到 R 聚类的馈送距离矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15931261/

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