在搜索stackoverflow之后,我仍然找不到找到答案的解决方案,因此我在这里发布了一个新问题:
示例数据:
#how tt generateed
>>> tt = pd.Series(demo1.values[:, 1], [demo1.index.get_level_values(0), demo1.values[:, 0]])
>>> type(tt)
<class 'pandas.core.series.Series'>
>>> tt.head()
0 AC 1
AF 0.333
AN 3
VT SNP
set mutect
dtype: object
# unstack tt
>>> tt.unstack()
...
ValueError: Index contains duplicate entries, cannot reshape
我想要的样子:
AC AF AN VT set ...
0 0.333 3 SNP mutect
1 ...
...
有人可以提出建议吗?如果不清楚,我将更新我的问题。
非常感谢您。