gpt4 book ai didi

python - 如何在套索回归或任何其他方法中生成 >0 的系数?

转载 作者:行者123 更新时间:2023-12-04 17:32:56 27 4
gpt4 key购买 nike

我正在运行以下代码以生成所有正系数:

from sklearn.linear_model import Lasso

pos = Lasso(positive=True)
pos.fit(X,y)
list(pos.coef_)

上面的代码给了我积极的系数或“0”,但我需要所有积极的影响。

要求 = All Positive coefficient(Coefficient should not be Zero(0))

如何执行上述任务?

最佳答案

lasso = Lasso(alpha=1, positive=True)
lasso_coeff['Coefficient Estimates] = pd.Series(lasso.coef_)
print(lasso_coeff)

# The above set of lines will force the coefficients to positive.

关于python - 如何在套索回归或任何其他方法中生成 >0 的系数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57918388/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com