R
Rodrigo Ferreira
I have a list (something like this):
aaa=2
ddd=3
ttt=4
ooo=6
aaa=4
ddd=5
ttt=6
ooo=7
aaa=3
ddd=5
ttt=7
ooo=3
....
And I wanto to make something like this
aaa ddd ttt ooo
2 3 4 6
4 5 6 7
3 5 7 3
....
how can I do this?
Rodrigo Ferreira
aaa=2
ddd=3
ttt=4
ooo=6
aaa=4
ddd=5
ttt=6
ooo=7
aaa=3
ddd=5
ttt=7
ooo=3
....
And I wanto to make something like this
aaa ddd ttt ooo
2 3 4 6
4 5 6 7
3 5 7 3
....
how can I do this?
Rodrigo Ferreira