您可以使用
groupby,
apply,
reset_index创建一个多指标系列,然后调用
unstack:
import pandas as pds = pd.Series(range(10,17), index=['a','a','b','b','c','c','c'])df = s.groupby(level=0).apply(pd.Series.reset_index, drop=True).unstack(0)print df
输出:
a b c0 10 12 141 11 13 152 NaN NaN 16
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)