my dataframe looks like :
StationID | Extlist | Situation
5 | 3,2 | Situation_1
the formats are strings. I would like to transform it to split the "x,y" into lines like this ;
StationID | Extlist | Situation
5 | 3 | Situation_1
5 | 2 | Situation_1
Thank's in advance