Answers for "repeat df rows n times pandas"

1

pandas repeat rows n times

test.loc[test.index.repeat(test.times)]

  id  times
0  a      2
0  a      2
1  b      3
1  b      3
1  b      3
2  c      1
3  d      5
3  d      5
3  d      5
3  d      5
3  d      5
Posted by: Guest on May-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language