>
在model_name.summary之后,我没有得到线性回归模型,而是两行。
import statsmodels.formula.api as smf
lm=smf.ols(formula=my_formula,data=train).fit()
lm.summary
expected -a model summary
i got instead-
<bound method RegressionResults.summary of
<statsmodels.regression.linear_model.OLSResults object at
0x000001B964ED12B0>>