AttributeError:“ DataFrame”对象没有属性“ ix”


9

当我尝试使用pandas数据框的.ix属性提取列时,出现上述错误,例如df.ix [:,'col_header']。该脚本从今天早上开始运行,但是今天下午我在带有新安装的Pandas的新Linux环境中运行了该脚本。其他人以前见过这个错误吗?我在这里和其他地方搜索过,但找不到。


3
您运行的是旧版熊猫。看到这个吗?stackoverflow.com/questions/43838999/pandas-replacement-for-ix
StupidWolf

Answers:







0

一栏:

df[['sepal width']]

两栏:

df[['sepal width','petal width']]

特殊列(选择的列包括“长度”):

df[[c for c in df.columns if 'length' in c]]
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.