在Pandas中旋转/取消堆叠文本字段

时间:2018-08-24 15:39:04

标签: python pandas stack pivot

正在努力解决堆垛问题。我想做的事情类似于jmp中的unstack函数,同时保留了我所有的列,但是我想用Python而不是jsl来做。我有一个以下格式的表:

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

我想对此进行分类,保留所有其他专栏。在所有情况下,A,B和C的每组的Word,Number和MetaData都将始终相同:

Word    Number  MetaData    A   B   C
One     1       Hello       5a  2b  8c
Two     2       World       2a  5b  1c

0 个答案:

没有答案