简体   繁体   English

数据框列到其他两列之间的矩阵

[英]Dataframe column to matrix by two other columns

I have a dataframe 我有一个数据框

df<-data.frame(i=rep(1:3,3),j=sort(rep(1:3,3)),v=sample(1:9,9))
df
  i j v
1 1 1 3
2 2 1 1
3 3 1 9
4 1 2 8
5 2 2 5
6 3 2 4
7 1 3 7
8 2 3 2
9 3 3 6

that I want to transform to matrix M such that 我想转换成矩阵M这样

M[i,j]<-df$v[which(df$i==i & df$j==j)] 

is there an easy way to do that? 有没有简单的方法可以做到这一点?

Based on your description, you can just do, 根据您的描述,您可以做到,

matrix(df$v, ncol = max(df$j))
#      [,1] [,2] [,3]
#[1,]    2    4    7
#[2,]    3    1    5
#[3,]    8    6    9

Data Used: 使用的数据:

dput(df)
structure(list(i = c(1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L), j = c(1L, 
1L, 1L, 2L, 2L, 2L, 3L, 3L, 3L), v = c(2L, 3L, 8L, 4L, 1L, 6L, 
7L, 5L, 9L)), class = "data.frame", row.names = c(NA, -9L))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM