从模型对象中检索值

时间:2018-04-10 10:38:27

标签: pandas statsmodels

我使用以下代码训练我的模型

trip_model = sm.OLS(x_dependent, y_variables).fit()

并将摘要打印为

trip_model.summary()

我只想从摘要

中取出以下值
F-statistic , coef

如何获得它?

1 个答案:

答案 0 :(得分:1)

fit函数返回的值是RegressionResults结构。您可以查看文档以了解如何访问每个特定值:

        public void Configuration(IAppBuilder app)
        {
            // CORS has to be set first in order for it to be enabled for OWIN

            app.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll);

            this.ConfigureOAuthTokenGeneration(app);

            this.ConfigureOAuthTokenConsumption(app);

            this.ConfigureWebApi();

            app.UseWebApi(HttpConfiguration);
}