This is my dataset
ID <- c(1,1,2,2,3,3)
ID_2<-c("A","A","B","B","C","C")
Type<-c("EM","PA","EM","PA","EM","PA")
INT <- c("R", "I", "S", "S", "R", "R")
ORG <- c("EC", "EC", "KP", "KP", "MM", "MM")
Data_sum<- data.frame(ID, ID_2, Type, INT, ORG)
Data_sum
I would like to data to look like this. So the rows are condensed based on "ID" and "ID_2" and spreading the column "Type" into individual columns and filling the responses with the information from "INT"
ID ID_2 EM PA ORG
1 A R I EC
2 B S S KP
3 C R R MM
here is a
data.table
approach