R:两个矩阵的列之间的成对欧几里德距离

发布于 2024-11-11 00:12:44 字数 386 浏览 10 评论 0原文

以下循环运行时间太长(2 分钟/迭代) tumor_signals 的大小为 950000x422 Normal_signals 的大小为 950000x772 关于如何加快速度有什么想法吗?

for(i in 1:ncol(tumor_signals)){
x <- as.vector(tumor_signals[,i])
print("Assigned x")
y <- t((t(normal_signals) - x)^2)
print("assigned y")
y <- t(sqrt(colSums(y)))
print("done")
#all_distance <- cbind(all_distance,matrix(distance))
print(i)
}

The following loop takes too lonng to run (2mins/iteration)
The tumor_signals is size 950000x422
The normal_signals is size 950000x772
Any ideas for how to speed it up?

for(i in 1:ncol(tumor_signals)){
x <- as.vector(tumor_signals[,i])
print("Assigned x")
y <- t((t(normal_signals) - x)^2)
print("assigned y")
y <- t(sqrt(colSums(y)))
print("done")
#all_distance <- cbind(all_distance,matrix(distance))
print(i)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜嗑 2024-11-18 00:12:44

您的代码中有一个错误 - 您不需要对 normal_signals 进行转置。据我了解,您正在尝试计算所有 i = 1,2,...422j=1,2,...,772tumor_signals[,i]normal_signals[,j] 之间的欧几里德距离。您可能希望结果采用 422 x 772 矩阵形式。 fields 包中有一个函数 rdist() 可以为您执行此操作:

require(fields)
result <- rdist(t(tumor_signals), t(normal_signals))

顺便说一句,Google 搜索 [R Euclidean distance] 会很容易找到这个包。

There's a bug in your code -- you don't need to take the transpose of normal_signals. As I understand it, you are trying to compute, for all i = 1,2,...422, and j=1,2,...,772, the Euclidean distance between tumor_signals[,i] and normal_signals[,j]. You would probably want the results in a 422 x 772 matrix. There's a function rdist() in the package fields that will do this for you:

require(fields)
result <- rdist(t(tumor_signals), t(normal_signals))

Incidentally, a Google search for [R Euclidean distance] would have easily found this package.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文