I have the following dataframe
0
0 0.164560
1 0.000000
2 0.350000
3 0.700000
...
3778 0.350000
3779 0.000000
3780 0.137500
3781 0.253333
I want to add an doc-id column starting with index 1 and change the value of column 0 to value. Expected output is
doc-id value
1 0.164560
2 0.000000
3 0.350000
4 0.700000
...
How can I do that?