(Python) Transform dataframe: parse rows if more than one value is given and add to corresponding given rows of dataframe
Sample dataset I have looks like this: Language Count Russian 1000 English 1500 Spanish 500 Arabic,Russian, English, Spanish 2 Arabic, English 15 I want it to transform so that the result looks like this: Language Count Russian 1002 English 1517 Spanish 502 Arabic 17 So what happened is that, I parsed rows that contained more… Read More (Python) Transform dataframe: parse rows if more than one value is given and add to corresponding given rows of dataframe