When I tried to write to csv using pandas, I got the following error
'DataFrame' object has no attribute 'ix'
It seems impossible with the latest version (1.0.2) of pandas. For more information < / a> Read it ❤️.
First, check the version of pandas (I used jupyter notebook this time, so as follows)
print(pd.__version__)
You can revert to the previous version if necessary. Specify the version with pip or conda and type a command.
Recommended Posts