Answers for "double groupby pandas can't reset"

1

reset_index(drop=true)

In [194]: df.reset_index(drop=True)
Out[194]: 
  _worker_id  foo
0          A    1
1          B    2
2          C    3
Posted by: Guest on May-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language