python 套索线性回归

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 套索线性回归相关的知识,希望对你有一定的参考价值。

from sklearn.linear_model import Lasso
lasso_reg = Lasso()
lasso_reg.fit(X, y)

# To retrieve and print out the coefficients from the regression model:
reg_coef = lasso_reg.coef_
print(reg_coef)

以上是关于python 套索线性回归的主要内容,如果未能解决你的问题,请参考以下文章

线性模型L1正则化——套索回归

如何将套索和岭回归拟合(Glmnet)叠加到数据上?

带加权样本的弹性网络回归或套索回归(sklearn)

在 Scikit-Learn 中获得线性回归的大交叉验证分数

运行套索回归方法时出错

为啥岭回归和套索回归分类器需要 random_state? [关闭]