Is it possible to de-aggregate (or perhaps de-concatenate) a Pandas data frame based on a string field that contains a delimited list of items that you'd now like to see broken out? Similar to converting a dataset into 1NF if you were doing relational data modeling.
For example, is there a straightforward way to take this:
Name    Projects
Joe     ProjectA, ProjectB
Mary    ProjectC, ProjectD, Project E
and convert it into this:
Name    Projects
Joe     ProjectA
Joe     ProjectB
Mary    ProjectC
Mary    ProjectD
Mary    ProjectE
 
    