I have some data arranged like this:
week 1 week 2 week 3 week 4
a b c 50 60 70 80
d e f 2 3 4 5
g h i 44 45 46 47
But I would like to have it like this:
a b c week 1 50
a b c week 2 60
a b c week 3 70
a b c week 4 80
d e f week 1 2
d e f week 2 3
d e f week 3 4
d e f week 4 5
g h i week 1 44
g h i week 2 45
g h i week 3 46
g h i week 4 47
I'm not that familiar with loops yet, so I'll post my problem here while trying to work it out..
Hmmm.. the data does not seem to show nicely here, if someone can tell me how to modify the data for this post, I can make it look better.. I hope you can read it.
week 1 week 2 week 3 week 4
a b c 50 60 70 80
d e f 2 3 4 5
g h i 44 45 46 47
But I would like to have it like this:
a b c week 1 50
a b c week 2 60
a b c week 3 70
a b c week 4 80
d e f week 1 2
d e f week 2 3
d e f week 3 4
d e f week 4 5
g h i week 1 44
g h i week 2 45
g h i week 3 46
g h i week 4 47
I'm not that familiar with loops yet, so I'll post my problem here while trying to work it out..
Hmmm.. the data does not seem to show nicely here, if someone can tell me how to modify the data for this post, I can make it look better.. I hope you can read it.