如何将 2 列矩阵转换为类似多重映射的结构?

发布于 2024-08-25 14:44:31 字数 232 浏览 9 评论 0原文

我想知道是否有一种方法可以将 2 列矩阵转换为多重映射或列表列表。

矩阵的第一列是一个 id(可能有重复的条目),第二列是某个值。

例如, 如果我必须遵循矩阵,

m <- matrix(c(1,2,1,3,2,4), c(3,2))

我想将其转换为以下列表

[[1]]
3,4
[[2]]
2

I am wondering if there is a way to transform a matrix of 2 columns into a multimap or list of list.

The first column of the matrix is an id (with possibly duplicated entries) and the 2nd column is some value.

For example,
if I have to following matrix

m <- matrix(c(1,2,1,3,2,4), c(3,2))

I would like to transform it into the following list

[[1]]
3,4
[[2]]
2

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

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

发布评论

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

评论(1

满身野味 2024-09-01 14:44:31

使用基本函数,您可以执行以下操作:

tapply(m[,2], m[,1], `[`)        # outputs an array
by(m, m[,1], function(m) m[,2])  # outputs a by object, which is a list

您可以使用 plyr

dlply(m, 1, function(m) m[,2])   # outputs a list
dlply(m, 1, `[`, 2)              # another way to do it...

With base functions, you can do something like this:

tapply(m[,2], m[,1], `[`)        # outputs an array
by(m, m[,1], function(m) m[,2])  # outputs a by object, which is a list

You could use plyr:

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