我有foll数据框(grp):
key ColA ColB
2 23.4 33.4
3 43.2 45.3
4 12.3 90.3
5 11.2 77.3
grp是先前执行的groupby操作的结果。这里的关键'是指数。
如何使用'键'创建另一个数据框?和' ColA'作为其元素?现在,我似乎无法选择'键'
答案 0 :(得分:1)
您可以使用reset_index。假设grp
是您所描述的DataFrame:
res = grp['ColA'].reset_index()
# res is now a DataFrame with key and ColA as the columns