statsmodels.discrete.discrete_model.DiscreteResults.summary¶
- DiscreteResults.summary(yname=None, xname=None, title=None, alpha=0.05, yname_list=None)[source]¶
Summarize the Regression Results.
- Parameters:
- yname
str
,optional
The name of the endog variable in the tables. The default is y.
- xname
list
[str
],optional
The names for the exogenous variables, default is “var_xx”. Must match the number of parameters in the model.
- title
str
,optional
Title for the top table. If not None, then this replaces the default title.
- alpha
float
The significance level for the confidence intervals.
- yname
- Returns:
Summary
Class that holds the summary tables and text, which can be printed or converted to various output formats.
See also
statsmodels.iolib.summary.Summary
Class that hold summary results.