Closed amunra closed 8 months ago
The current code still works, but creates a few warnings with the latest pandas releases. This is because it's causing functions that are deprecated.
ran into this just now, if it helps
Series.__getitem__ treating keys as positions is deprecated
pandas suggest to use:
df.loc[index, <cloumn_name>] df.loc[index, <cloumn_index>]
df.loc[index, <cloumn_name>]
df.loc[index, <cloumn_index>]
The current code still works, but creates a few warnings with the latest pandas releases. This is because it's causing functions that are deprecated.