4.5.6.1.6. statsmodels.iolib.summary2.summary_params¶
-
statsmodels.iolib.summary2.
summary_params
(results, yname=None, xname=None, alpha=0.05, use_t=True, skip_header=False, float_format='%.4f')[source]¶ create a summary table of parameters from results instance
Parameters: res : results instance
some required information is directly taken from the result instance
yname : string or None
optional name for the endogenous variable, default is “y”
xname : list of strings or None
optional names for the exogenous variables, default is “var_xx”
alpha : float
significance level for the confidence intervals
use_t : bool
indicator whether the p-values are based on the Student-t distribution (if True) or on the normal distribution (if False)
skip_headers : bool
If false (default), then the header row is added. If true, then no header row is added.
float_format : string
float formatting options (e.g. ”.3g”)
Returns: params_table : SimpleTable instance