I have the following Dataframe
:
index col1
1 "a"
2
3 "b"
4
5
And from that I want to produce the following Dataframe
:
index col1
1 "a"
2 "a"
3 "b"
4 "b"
5 "b"
I tried duplicating the dataframe and doing lookup, but didn't work.