使用 statsmodels.formula.api 中的 ols - 如何删除常数项?
using ols from statsmodels.formula.api - how to remove constant term?
我正在学习 statsmodels
教程中的第一个示例:
http://statsmodels.sourceforge.net/devel/
如何在 ols 中指定不使用常数项进行线性拟合?
# Fit regression model (using the natural log of one of the regressors)
results = smf.ols('Lottery ~ Literacy + np.log(Pop1831)', data=dat).fit()
如shown here in the section on Operators,可以在公式串中使用“-1”去掉一个截距项:
results = smf.ols('Lottery ~ Literacy + np.log(Pop1831) - 1', data=dat).fit()
我正在学习 statsmodels
教程中的第一个示例:
http://statsmodels.sourceforge.net/devel/
如何在 ols 中指定不使用常数项进行线性拟合?
# Fit regression model (using the natural log of one of the regressors)
results = smf.ols('Lottery ~ Literacy + np.log(Pop1831)', data=dat).fit()
如shown here in the section on Operators,可以在公式串中使用“-1”去掉一个截距项:
results = smf.ols('Lottery ~ Literacy + np.log(Pop1831) - 1', data=dat).fit()