使用 apply 将两个矩阵转换为列表

发布于 2024-12-07 20:35:39 字数 799 浏览 0 评论 0原文

我有两个列数相同但行数不同的矩阵:

a <- cbind(runif(5), runif(5))
b <- cbind(runif(8), runif(8))

我想将它们关联到同一个列表中,以便 ab 的第一列> 彼此关联,依此类推:

my_result <- list(list(a[,1], b[,1]), list(a[,2], b[,2]))

因此结果将如下所示:

> print(my_result)
[[1]]
[[1]][[1]]
[1] 0.9440956 0.7259602 0.7804068 0.7115368 0.2771190

[[1]][[2]]
[1] 0.4155642 0.1535414 0.6983123 0.7578231 0.2126765 0.6753884 0.8160817
[8] 0.6548915

[[2]]
[[2]][[1]]
[1] 0.7343330 0.7751599 0.4463870 0.6926663 0.9692621

[[2]][[2]]
[1] 0.5708726 0.1234482 0.2875474 0.4760349 0.2027653 0.5142006 0.4788264
[8] 0.7935544

我不知道如何在没有 for 循环的情况下做到这一点,但我很确定一些 *apply 魔法可以在这里使用。

任何指示将不胜感激。

I have two matrix with the same number of columns, but with different number of rows:

a <- cbind(runif(5), runif(5))
b <- cbind(runif(8), runif(8))

I want to associate these in a same list, so that the first columns of a and b are associated with each other, and so on:

my_result <- list(list(a[,1], b[,1]), list(a[,2], b[,2]))

So the result would look like this:

> print(my_result)
[[1]]
[[1]][[1]]
[1] 0.9440956 0.7259602 0.7804068 0.7115368 0.2771190

[[1]][[2]]
[1] 0.4155642 0.1535414 0.6983123 0.7578231 0.2126765 0.6753884 0.8160817
[8] 0.6548915

[[2]]
[[2]][[1]]
[1] 0.7343330 0.7751599 0.4463870 0.6926663 0.9692621

[[2]][[2]]
[1] 0.5708726 0.1234482 0.2875474 0.4760349 0.2027653 0.5142006 0.4788264
[8] 0.7935544

I can't figure how to do that without a for loop, but I'm pretty sure some *pply magic could be used here.

Any directions would be much appreciated.

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

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

发布评论

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

评论(1

度的依靠╰つ 2024-12-14 20:35:39

我不确定您正在寻找的解决方案有多通用(任意数量的矩阵、传递矩阵列表的能力等),但这适用于您的具体示例:

lapply(1:2,function(i){list(a[,i],b[,i])})

I'm not sure how general a solution you're looking for (arbitrary number of matrices, ability to pass a list of matrices, etc.) but this works for your specific example:

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