Skip to content
Advertisement

Pandas appending dictionary values with iterrows row values

I have a dict of city names, each having an empty list as a value. I am trying to use df.iterrows() to append corresponding names to each dict key(city):

JavaScript

Can somebody explain why the code above appends all possible ‘fullname’ values to each dict’s key instead of appending them to their respective city keys?

I.e. instead of getting the result

JavaScript

I’m getting

JavaScript

Edit: providing a sample of the dataframe:

JavaScript

Edit 2: I’m pretty sure that my problem lies in my dict, since I created it in the following way:

JavaScript

when I call dict, i get the correct output:

JavaScript

However if I specify a key dict['Arizona'], i get this:

JavaScript

Advertisement

Answer

The problem is indeed .fromkeys – the default value is evaluated once – so all of the keys are “pointing to” the same list.

JavaScript

You’d need a comprehension to create a distinct list for each key.

JavaScript

You are also manually implementing a groupby with your code:

JavaScript

If you want a dict:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement