Skip to content
Advertisement

Tag: for-loop

Iterating through multiple rows using multiple values from nested dictionary to update data frame in python

I created nested dictionary to keep multiple values for each combination, example rows in the dictionary is as follows:- dict = {‘A’: {B: array([1,2,3,4,5,6,7,8,9,10]), C: array([array([1,2,3,4,5,6,7,8,9,10],…}} There are multiple As and in that multiple arrays for each array. Now I want to updated the data frame which has following rows: Col 1 Col 2 Col 3 Col 4 A B

Advertisement