4.5.5.1.5. statsmodels.iolib.summary.summary_params_2dflat

statsmodels.iolib.summary.summary_params_2dflat(result, endog_names=None, exog_names=None, alpha=0.05, use_t=True, keep_headers=True, endog_cols=False)[source]

summary table for parameters that are 2d, e.g. multi-equation models

Parameters:

result : result instance

the result instance with params, bse, tvalues and conf_int

endog_names : None or list of strings

names for rows of the parameter array (multivariate endog)

exog_names : None or list of strings

names for columns of the parameter array (exog)

alpha : float

level for confidence intervals, default 0.95

use_t : bool

indicator whether the p-values are based on the Student-t distribution (if True) or on the normal distribution (if False)

keep_headers : bool

If true (default), then sub-tables keep their headers. If false, then only the first headers are kept, the other headerse are blanked out

endog_cols : bool

If false (default) then params and other result statistics have equations by rows. If true, then equations are assumed to be in columns. Not implemented yet.

Returns:

tables : list of SimpleTable

this contains a list of all seperate Subtables

table_all : SimpleTable

the merged table with results concatenated for each row of the parameter array