0
重新排列數據我有類似於下面一個很長的數據列表:如何R中
set.seed(9)
part_number<-sample(1:5,5,replace=TRUE)
Type<-sample(c("A","B","C"),5, replace=TRUE)
rank<-sample(1:20,5,replace=TRUE)
data<-data.frame(cbind(part_number,Type,rank))
data
part_number Type rank
1 2 A 3
2 1 B 1
3 2 B 18
4 2 C 7
5 3 C 10
I want to rearrange the data in the following way:
part_number A B C
1 1
2 3 18 7
3 10
我想我需要使用重塑庫。但我不確定。