I have a dataframe like so:
ID  | Value1  | Value2  | Tags
1   |    1    |    6    |   Alex/Jason
2   |    6    |    3    |   Miranda
3   |    5    |    9    |   Jose/Rebecca
4   |    2    |    7    |   Max
5   |    0    |    1    |   Lilly
I want to split the Tag column by a delimiter (in this case "/") and then duplicate the rows such that there is only one Tag per row:
ID  | Value1  | Value2  | Tags
1   |    1    |    6    |   Alex
1   |    1    |    6    |   Jason
2   |    6    |    3    |   Miranda
3   |    5    |    9    |   Jose
3   |    5    |    9    |   Rebecca
4   |    2    |    7    |   Max
5   |    0    |    1    |   Lilly
 
     
    