从数据帧 R 获取矩阵
我正在研究聚类,我需要在矩阵中转换我的数据。 这是我的 df:
el1 el2 value
1 a x 1
2 a y 2
3 a z 3
2 b x 2
3 b y 3
3 b z 3
我需要将其转换为矩阵,将 el1 和 el2 作为行和列名称以及相应的值。
x y z
a 1 2 3
b 2 3 3
我该怎么办?谢谢!
I'm working on clustering and I need to tranform my data in matrix.
This is my df:
el1 el2 value
1 a x 1
2 a y 2
3 a z 3
2 b x 2
3 b y 3
3 b z 3
I need to transform it in matrix, having el1 and el2 as rows and cols names and the corresponding value.
x y z
a 1 2 3
b 2 3 3
How I can do? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
reshape2
和一些魔法(我创建了自己的数据),那么
如果您的原始数据仅包含矩阵的上三角形或下三角形的数据,那么您可以复制另一个
Using
reshape2
and some magic (I created my own data)then
if your original data only contains data for the upper or lower triangle of a matrix then you can copy the other with
使用“xtabs”的基本 R 选项
A base R option using ´xtabs`
这是一个基于
tidyr
的pivot_wider
函数的解决方案:它需要一些工作,因为 tibbles 不喜欢行名称。
Here is a solution based on
tidyr
'spivot_wider
function:It needs a little bit of work because tibbles do not like row names.