My current data frame looks like this:
ID Date Data
00112 11-02-2014 {'address1': '161 Glensford Dr', 'address2': '', 'address3': '', 'city': 'Fayetteville', 'zip_code': '28314', 'country': 'US', 'state': 'NC', 'display_address': ['161 Glensford Dr', 'Fayetteville, NC 28314'], 'cross_streets': ''}
00112 11-02-2014 {...}
00112 30-07-2015 {...}
00112 30-07-2015 {...}
I would like to access to the column Data and get the value for all my rows of "address1" I have the same format for all my rows for this Data column:
{'address1': '1909 Skibo Rd', 'address2': '', 'address3': '', 'city': 'Fayetteville', 'zip_code': '28314', 'country': 'US', 'state': 'NC', 'display_address': ['1909 Skibo Rd', 'Fayetteville, NC 28314'], 'cross_streets': ''}
I do not how to get the value of address1 for each row.