I have huge dataframe like this:
SN = c(1:100, 1:100, 1:100, 1:100)
class = c(rep("A1", 100), rep("B2", 100), rep("C3", 100), rep("D4", 100)) # total 6000 levels
myvar = rnorm(400)
mydf = data.frame(SN, class, myvar)
I want to "unmelt" to a table with each level as single column and myvar in filled:
SN A1 B2 C3 D4 .............and so on for all 6000
How can I achieve this, I know it is simple question, but I could not figure out.
reshape2the opposite ofmeltiscast– Andrie Oct 19 '11 at 20:41reshape(). – John Colby Oct 19 '11 at 20:56SNvarying in the vertical direction (likey), andclassvarying in the horizontal direction (likex). So instead ofy ~ x, we haveSN ~ class– John Colby Oct 19 '11 at 21:01