I've created a pandas DataFrame with data from loops (data saved here). Now, I want to iterate over this DataFrame. However, when I try to access the items() function like this:
frame = pandas.read_csv(data_path + '/file1.csv')
frame.items()
I get this error:
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "C:\Python27\ArcGIS10.7\lib\site-packages\pandas\core\generic.py", line 2668, in __getattr__
return object.__getattribute__(self, name)
AttributeError: 'DataFrame' object has no attribute 'items'
This is especially weird since PyCharm offers me the option to fill in items
if I just type frame.it
What does this mean?