my dataframe looks like
| ID | fields |
|---|---|
| 1 | [egg, apple, toy..] |
| 2 | [orange, bear, red..] |
with lists on fields
and I wish to output a separate datadrame for each ID, so the number of dataframe would be the number of rows and the output would look like this for the first dataframe
| Value |
|---|
| egg |
| apple |
| toy |
Is there a way I can do this? Thanks