I have a data frame with 131 millions rows.
The data.frame
has 2 columns. Column 1
is a number. Column 2
is a list of values
Something like this
Col1 | Col2
1 | a, b, c
2 | d, e, f
3 | a, e, f
And I need to put it like this:
Col1 | Col2
1 | a
1 | b
1 | c
2 | d
2 | e
2 | f
3 | a
3 | e
3 | f
It must be quick because of the 131 millions rows.