statsmodels.iolib.summary.Summary.add_table_2cols#

Summary.add_table_2cols(res, title=None, gleft=None, gright=None, yname=None, xname=None)[source]#

Add a double table, 2 tables with one column merged horizontally

Parameters:
resresults instance

some required information is directly taken from the result instance

titlestr, optional

if None, then a default title is used.

gleftlist of tuple, optional

elements for the left table, tuples are (name, value) pairs If gleft is None, then a default table is created

grightlist of tuple, optional

elements for the right table, tuples are (name, value) pairs

ynamestr, optional

optional name for the endogenous variable, default is “y”

xnamelist of str, optional

optional names for the exogenous variables, default is “var_xx”. Must match the number of parameters in the model.