鱼C论坛

 找回密码
 立即注册
查看: 798|回复: 2

[已解决]sklearn LinearRegression对数据格式的要求是什么呀

[复制链接]
发表于 2020-4-20 18:00:25 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
regressor = LinearRegression()
regressor.fit(X_train,y_train)
ValueError: Expected 2D array, got 1D array instead:
array=[14 67 69 61  0 32 51 47 36 16 24 18 19 28 11 43 66 34 35 70 46 41 60 52
 73 72 33 62 44  3 57 26  6 48 10 65  8  9 15 40 50 13  4  5 23 17 22 64
 27 68].
Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample.

这是什么情况呢
最佳答案
2020-4-20 19:13:56
fit的参数需要填的是数据+特征数

x: {array-like, sparse matrix} of shape (n_samples, n_features)
Training data

y: array-like of shape (n_samples,) or (n_samples, n_targets)
Target values. Will be cast to X’s dtype if necessary

自己查官网文档不香吗?
https://scikit-learn.org/stable/ ... nearRegression.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-20 19:13:56 | 显示全部楼层    本楼为最佳答案   
fit的参数需要填的是数据+特征数

x: {array-like, sparse matrix} of shape (n_samples, n_features)
Training data

y: array-like of shape (n_samples,) or (n_samples, n_targets)
Target values. Will be cast to X’s dtype if necessary

自己查官网文档不香吗?
https://scikit-learn.org/stable/ ... nearRegression.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-20 21:52:36 | 显示全部楼层
BngThea 发表于 2020-4-20 19:13
fit的参数需要填的是数据+特征数

谢谢谢谢!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-26 16:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表