Input is a DF like this:
| Opened | short_description_tokens | |
|---|---|---|
| 0 | 2021-04-15 | [falla, reloj, checador] |
| 1 | 2021-04-11 | [falla, outlet] |
Output should be a second data frame like this:
| Opened | stoken | |
|---|---|---|
| 0 | 2021-04-15 | falla |
| 1 | 2021-04-15 | reloj |
| 2 | 2021-04-15 | checador |
| 3 | 2021-04-11 | falla |
| 4 | 2021-04-11 | outlet |
Thanks on the help :))