我正在使用统计模型拟合OLS模型。我需要返回拟合直线的斜率。
model = sm.OLS(y, X)
results = model.fit()
results.fittedvalues
给出了直线上的点。怎么求斜率呢?
results.params
包含所有变量的"斜率"