Struggling with an unstacking problem. I have a table in the following format:
Word Number MetaData Label Value
One 1 Hello A 5a
One 1 Hello B 2b
One 1 Hello C 8c
Two 2 World A 2a
Two 2 World B 5b
Two 2 World C 1c
I want to unstack it to this, preserving all of my other columns. In all cases, Word, Number, and MetaData will always be the same for each set of A, B, and C:
Word Number MetaData A B C
One 1 Hello 5a 2b 8c
Two 2 World 2a 5b 1c