Skip to content

Tag: pandas

Convert the lists in multiple columns to rows in pandas df

I have df with three columns: Col 0 – sentence row num Col 1 – Sentence converted to list Col 2 – list of annotations Col 0 Col1 Col2 1 [This, is, sentence] [l1, l2, l3] 2 [This, is, sentence, too] [l1, l2, l3, l4] I would like to convert Col1 and Col2 and move each row and its respective

Convert nested dictionary to pandas dataframe

I have a nested dictionary as below: I need to convert it into a dataframe like below I have tired the following code from this answer I am getting the dataframe like below This is the closest I got to the desired output. What changes do I need to make to the code to get the desired dataframe? Answer Change