I have been trying for hours to find a method to replicate columns n number of times and add them a Dataframe
but has had little luck. Please help!
Current Dataframe:
0
0 2
1 4
2 5
3 6
4 9
Output:
0 1 2 ... 99
0 2 2 2 2
1 4 4 4 4
2 5 5 5 5
3 6 6 6 6
4 9 9 9 9