0

Is there a way to transpose dataframe in R as shown below. The transpose here is little tricky and hence asking for help

asd <- data.frame(a = c("A","A", "B", "C"), Time = c(1,2,3,4), c = c(4,7,8,9))

Expected output

Time  A   B   C
 1    4   NA  NA
 2    7   NA  NA
 3    NA  8   9
 4    NA  3   4
manu p
  • 575
  • 1
  • 7

1 Answers1

-1
asd <- data.frame(a = c("A","A", "B", "C"), Time = c(1,2,3,4), c = c(4,7,8,9))
richardec
  • 14,202
  • 6
  • 23
  • 49