我使用以下代码训练我的模型
trip_model = sm.OLS(x_dependent, y_variables).fit()
并将摘要打印为
trip_model.summary()
我只想从摘要
中取出以下值F-statistic , coef
如何获得它?
答案 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);
}