AttributeError: 'DataFrame' object has no attribute 'feature_names'
时间: 2023-06-22 18:33:00 浏览: 474
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误提示是因为 DataFrame 对象没有 feature_names 这个属性。通常,feature_names 是指机器学习模型中特征的名称列表。如果你想在 DataFrame 中指定特征名称列表,可以使用 columns 属性。例如,如果你的 DataFrame 名称为 df,可以使用以下代码指定特征名称列表:
```
df.columns = ['feature1', 'feature2', 'feature3']
```
这将把 DataFrame df 中的三列分别命名为 feature1、feature2 和 feature3。你可以根据自己的需要修改特征名称列表。
阅读全文