AttributeError: 'LinearRegression' object has no attribute 'coef'
时间: 2023-06-22 22:26:07 浏览: 284
bcremoveobjectimageattributecontent:BC Remove Object Image Attribute Content 提供了一个稳定而灵活的解决方案,允许用户根据当前版本、所有版本或新版本动态删除内容对象图像属性内容。 提供对图像属性内容的脚本化操作!
对不起,我犯了一个错误。'LinearRegression' 对象没有 'coef' 属性。实际上,'LinearRegression' 对象有一个名为 'coef_' 的属性,用来表示每个特征的系数。
因此,您可以将代码中的 'coef' 改为 'coef_',以避免该错误。
改进后的代码如下:
```
title = "The predicted values of test samples in LinearRegression\n"
title += "RMSE = {:.2f}, estimator.coef_ = {:.2f}%, estimator.intercept_ = {:.2f}%".format(rmse, estimator.coef_[0], estimator.intercept_)
plt.title(title)
```
请注意,'coef_' 属性返回一个数组,因此在这里我们使用了索引 [0] 来获取第一个值。
阅读全文