Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

constant pandas warning in pycharm console "FutureWarning: iteritems is deprecated

Why does this code give me a warning message?

import pandas as pd
import numpy as np

test = pd.DataFrame({'a':np.array([0,1,2]), 'b': np.array([3,4,5])})

It seems anything I do in pandas throws these long error messages, I'm not sure if this is a problem with pycharm or if I'm doing something wrong in pandas.

like image 945
Taw Avatar asked Dec 07 '25 04:12

Taw


1 Answers

You can ignore the warning, it is a known bug and is being fixed.

like image 54
brance Avatar answered Dec 08 '25 19:12

brance