from statsmodels.compat.pandas import FUTURE_STACK
from statsmodels.compat.python import lzip
import datetime
from functools import reduce
import re
import textwrap
import numpy as np
import pandas as pd
from .table import SimpleTable
from .tableformatting import fmt_latex, fmt_txt
[docs]
class Summary:
"""
Result summary
Construction does not take any parameters. Tables and text can be added
with the `add_` methods.
Attributes
----------
tables : list
List of tables added with `add_df`, `add_array` or `add_dict`.
settings : list of dict
Formatting settings associated with each entry in `tables`.
extra_txt : list of str
Extra lines that are added to the text output.
title : str
Title of the summary table.
"""
def __init__(self):
self.tables = []
self.settings = []
self.extra_txt = []
self.title = None
self._merge_latex = False
def __str__(self):
return self.as_text()
def __repr__(self):
return str(type(self)) + '\n"""\n' + self.__str__() + '\n"""'
def _repr_html_(self):
"""Display as HTML in IPython notebook"""
return self.as_html()
def _repr_latex_(self):
"""Display as LaTeX when converting IPython notebook to PDF"""
return self.as_latex()
[docs]
def add_df(self, df, index=True, header=True, float_format="%.4f",
align="r"):
"""
Add the contents of a DataFrame to summary table
Parameters
----------
df : DataFrame
The DataFrame to add to the summary table.
index : bool
Reproduce the DataFrame row labels in summary table
header : bool
Reproduce the DataFrame column labels in summary table
float_format : str
Formatting to float data columns
align : str
Data alignment (l/c/r)
"""
settings = {"index": index, "header": header,
"float_format": float_format, "align": align}
self.tables.append(df)
self.settings.append(settings)
[docs]
def add_array(self, array, align="r", float_format="%.4f"):
"""
Add the contents of a Numpy array to summary table
Parameters
----------
array : ndarray
A 2D numpy array.
align : str
Data alignment (l/c/r)
float_format : str
Formatting to array if type is float
"""
table = pd.DataFrame(array)
self.add_df(table, index=False, header=False,
float_format=float_format, align=align)
[docs]
def add_dict(self, d, ncols=2, align="l", float_format="%.4f"):
"""
Add the contents of a Dict to summary table
Parameters
----------
d : dict
Keys and values are automatically coerced to strings with str().
Users are encouraged to format them before using add_dict.
ncols : int
Number of columns of the output table
align : str
Data alignment (l/c/r)
float_format : str
Formatting to float data columns
"""
keys = [_formatter(x, float_format) for x in d.keys()]
vals = [_formatter(x, float_format) for x in d.values()]
data = np.array(lzip(keys, vals))
if data.shape[0] % ncols != 0:
pad = ncols - (data.shape[0] % ncols)
data = np.vstack([data, np.array(pad * [["", ""]])])
data = np.split(data, ncols)
data = reduce(lambda x, y: np.hstack([x, y]), data)
self.add_array(data, align=align)
[docs]
def add_text(self, string):
"""
Append a note to the bottom of the summary table
Parameters
----------
string : str
The note to append.
Notes
-----
In ASCII tables, the note will be wrapped to table width. Notes are
not indented.
"""
self.extra_txt.append(string)
[docs]
def add_title(self, title=None, results=None):
"""
Insert a title on top of the summary table
Parameters
----------
title : str, optional
If a string is provided, that string is printed as the title.
results : Model results instance, optional
If no title string is provided but a results instance is
provided, statsmodels attempts to construct a useful title
automatically.
"""
if isinstance(title, str):
self.title = title
elif results is not None:
model = results.model.__class__.__name__
if model in _model_types:
model = _model_types[model]
self.title = "Results: " + model
else:
self.title = ""
[docs]
def add_base(self, results, alpha=0.05, float_format="%.4f", title=None,
xname=None, yname=None):
"""
Try to construct a basic summary instance
Parameters
----------
results : Model results instance
alpha : float
significance level for the confidence intervals (optional)
float_format: str
Float formatting for summary of parameters (optional)
title : str
Title of the summary table (optional)
xname : list[str] of length equal to the number of parameters
Names of the independent variables (optional)
yname : str
Name of the dependent variable (optional)
"""
param = summary_params(results, alpha=alpha, use_t=results.use_t)
info = summary_model(results)
if xname is not None:
param.index = xname
if yname is not None:
info["Dependent Variable:"] = yname
self.add_dict(info, align="l")
self.add_df(param, float_format=float_format)
self.add_title(title=title, results=results)
[docs]
def as_text(self):
"""Generate ASCII summary table"""
tables = self.tables
settings = self.settings
title = self.title
extra_txt = self.extra_txt
pad_col, pad_index, widest = _measure_tables(tables, settings)
rule_equal = widest * "="
simple_tables = _simple_tables(tables, settings, pad_col, pad_index)
tab = [x.as_text() for x in simple_tables]
tab = "\n".join(tab)
tab = tab.split("\n")
tab[0] = rule_equal
tab.append(rule_equal)
tab = "\n".join(tab)
if title is not None:
if len(title) < widest:
title = " " * int(widest / 2 - len(title) / 2) + title
else:
title = ""
txt = [textwrap.wrap(x, widest) for x in extra_txt]
txt = ["\n".join(x) for x in txt]
txt = "\n".join(txt)
out = f"{title}\n{tab}\n{txt}"
return out
[docs]
def as_html(self):
"""Generate HTML summary table"""
tables = self.tables
settings = self.settings
simple_tables = _simple_tables(tables, settings)
tab = [x.as_html() for x in simple_tables]
tab = "\n".join(tab)
temp_txt = [st.replace("\n", "<br/>\n")for st in self.extra_txt]
txt = "<br/>\n".join(temp_txt)
out = f"{tab}<br/>\n{txt}"
return out
[docs]
def as_latex(self, label=""):
"""
Generate LaTeX summary table
Parameters
----------
label : str
Label of the summary table that can be referenced
in a latex document (optional)
"""
tables = self.tables
settings = self.settings
title = self.title
if title is not None:
title = "\\caption{" + title + "}"
else:
title = "\\caption{}"
label = "\\label{" + label + "}"
simple_tables = _simple_tables(tables, settings)
tab = [x.as_latex_tabular() for x in simple_tables]
tab = "\n\n".join(tab)
to_replace = ("\\\\hline\\n\\\\hline\\n\\\\"
"end{tabular}\\n\\\\begin{tabular}{.*}\\n")
if self._merge_latex:
# create single tabular object for summary_col
tab = re.sub(to_replace, r"\\midrule\n", tab)
non_captioned = "\\begin{table}", title, label, tab, "\\end{table}"
non_captioned = "\n".join(non_captioned)
txt = " \\newline \n".join(self.extra_txt)
out = non_captioned + "\n\\bigskip\n" + txt
return out
def _measure_tables(tables, settings):
"""
Compare width of ascii tables in a list and calculate padding values
We add space to each col_sep to get us as close as possible to the
width of the largest table. Then, we add a few spaces to the first
column to pad the rest.
Parameters
----------
tables : list of DataFrame
The tables that will be rendered.
settings : list of dict
Formatting settings associated with each entry in `tables`.
Returns
-------
pad_sep : list of int
Padding to add to the column separator of each table.
pad_index : list of int
Padding to add to the index column of each table.
max_length : int
The width, in characters, of the widest table.
"""
simple_tables = _simple_tables(tables, settings)
tab = [x.as_text() for x in simple_tables]
length = [len(x.splitlines()[0]) for x in tab]
len_max = max(length)
pad_sep = []
pad_index = []
for i in range(len(tab)):
nsep = max(tables[i].shape[1] - 1, 1)
pad = int((len_max - length[i]) / nsep)
pad_sep.append(pad)
len_new = length[i] + nsep * pad
pad_index.append(len_max - len_new)
return pad_sep, pad_index, max(length)
# Useful stuff # TODO: be more specific
_model_types = {"OLS": "Ordinary least squares",
"GLS": "Generalized least squares",
"GLSAR": "Generalized least squares with AR(p)",
"WLS": "Weighted least squares",
"RLM": "Robust linear model",
"NBin": "Negative binomial model",
"GLM": "Generalized linear model"
}
def summary_model(results):
"""
Create a dict with information about the model
Parameters
----------
results : Model results instance
The result instance to summarize.
Returns
-------
dict
Dictionary of model information, such as the model class, the
dependent variable and the number of observations. Keys that
cannot be constructed for the given results instance (for example
because the underlying attribute does not exist) are omitted.
"""
def time_now(*args, **kwds):
now = datetime.datetime.now()
return now.strftime("%Y-%m-%d %H:%M")
info = {}
info["Model:"] = lambda x: x.model.__class__.__name__
info["Model Family:"] = lambda x: x.family.__class.__name__
info["Link Function:"] = lambda x: x.family.link.__class__.__name__
info["Dependent Variable:"] = lambda x: x.model.endog_names
info["Date:"] = time_now
info["No. Observations:"] = lambda x: f"{int(x.nobs):#6d}"
info["Df Model:"] = lambda x: f"{int(x.df_model):#6d}"
info["Df Residuals:"] = lambda x: f"{int(x.df_resid):#6d}"
info["Converged:"] = lambda x: x.mle_retvals["converged"]
info["No. Iterations:"] = lambda x: x.mle_retvals["iterations"]
info["Method:"] = lambda x: x.method
info["Norm:"] = lambda x: x.fit_options["norm"]
info["Scale Est.:"] = lambda x: x.fit_options["scale_est"]
info["Cov. Type:"] = lambda x: x.fit_options["cov"]
rsquared_type = "" if results.k_constant else " (uncentered)"
info["R-squared" + rsquared_type + ":"] = lambda x: f"{x.rsquared:#8.3f}"
info["Adj. R-squared" + rsquared_type + ":"] = lambda x: f"{x.rsquared_adj:#8.3f}"
info["Pseudo R-squared:"] = lambda x: f"{x.prsquared:#8.3f}"
info["AIC:"] = lambda x: f"{x.aic:8.4f}"
info["BIC:"] = lambda x: f"{x.bic:8.4f}"
info["Log-Likelihood:"] = lambda x: f"{x.llf:#8.5g}"
info["LL-Null:"] = lambda x: f"{x.llnull:#8.5g}"
info["LLR p-value:"] = lambda x: f"{x.llr_pvalue:#8.5g}"
info["Deviance:"] = lambda x: f"{x.deviance:#8.5g}"
info["Pearson chi2:"] = lambda x: f"{x.pearson_chi2:#6.3g}"
info["F-statistic:"] = lambda x: f"{x.fvalue:#8.4g}"
info["Prob (F-statistic):"] = lambda x: f"{x.f_pvalue:#6.3g}"
info["Scale:"] = lambda x: f"{x.scale:#8.5g}"
out = {}
for key, func in info.items():
try:
out[key] = func(results)
except (AttributeError, KeyError, NotImplementedError):
# NOTE: some models do not have loglike defined (RLM),
# so raise NotImplementedError
pass
return out
def summary_params(results, yname=None, xname=None, alpha=.05, use_t=True,
skip_header=False, float_format="%.4f"):
"""
Create a summary table of parameters from results instance
Parameters
----------
results : results instance
some required information is directly taken from the result
instance. May also be a tuple of
(results, params, bse, tvalues, pvalues, conf_int) for
multivariate endog.
yname : {str, None}
optional name for the endogenous variable, default is "y"
xname : {list[str], 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_header : bool
If false (default), then the header row is added. If true, then no
header row is added.
float_format : str
float formatting options (e.g. ".3g")
Returns
-------
params_table : DataFrame
DataFrame with the coefficient, standard error, test statistic,
p-value and confidence interval columns.
"""
if isinstance(results, tuple):
results, params, bse, tvalues, pvalues, conf_int = results
else:
params = results.params
bse = results.bse
tvalues = results.tvalues
pvalues = results.pvalues
conf_int = results.conf_int(alpha)
data = np.array([params, bse, tvalues, pvalues]).T
data = np.hstack([data, conf_int])
data = pd.DataFrame(data)
if use_t:
data.columns = ["Coef.", "Std.Err.", "t", "P>|t|",
"[" + str(alpha / 2), str(1 - alpha / 2) + "]"]
else:
data.columns = ["Coef.", "Std.Err.", "z", "P>|z|",
"[" + str(alpha / 2), str(1 - alpha / 2) + "]"]
if not xname:
try:
data.index = results.model.data.param_names
except AttributeError:
data.index = results.model.exog_names
else:
data.index = xname
return data
# Vertical summary instance for multiple models
def _col_params(result, float_format="%.4f", stars=True, include_r2=False):
"""
Stack coefficients and standard errors in single column
Parameters
----------
result : Model results instance
The result instance to summarize.
float_format : str
Formatting to apply to coefficients and standard errors.
stars : bool
If True, append significance stars to the coefficients.
include_r2 : bool
If True, include R-squared and adjusted R-squared in the column.
Returns
-------
DataFrame
Single-column DataFrame with coefficients and standard errors
stacked into a single index.
"""
# Extract parameters
res = summary_params(result)
# Format float
for col in res.columns[:2]:
res[col] = res[col].apply(lambda x: float_format % x)
# Std.Errors in parentheses
res.iloc[:, 1] = "(" + res.iloc[:, 1] + ")"
# Significance stars
if stars:
idx = res.iloc[:, 3] < .1
res.loc[idx, res.columns[0]] = res.loc[idx, res.columns[0]] + "*"
idx = res.iloc[:, 3] < .05
res.loc[idx, res.columns[0]] = res.loc[idx, res.columns[0]] + "*"
idx = res.iloc[:, 3] < .01
res.loc[idx, res.columns[0]] = res.loc[idx, res.columns[0]] + "*"
# Stack Coefs and Std.Errors
res = res.iloc[:, :2]
res = res.stack(**FUTURE_STACK)
# Add R-squared
if include_r2:
rsquared = getattr(result, "rsquared", np.nan)
rsquared_adj = getattr(result, "rsquared_adj", np.nan)
r2 = pd.Series({("R-squared", ""): rsquared,
("R-squared Adj.", ""): rsquared_adj})
if r2.notna().any():
r2 = r2.apply(lambda x: float_format % x)
res = pd.concat([res, r2], axis=0)
res = pd.DataFrame(res)
res.columns = [str(result.model.endog_names)]
return res
def _col_info(result, info_dict=None):
"""
Stack model info in a column
Parameters
----------
result : Model results instance
The result instance to summarize.
info_dict : dict, optional
Dict of functions to be applied to `result` to retrieve model
info, keyed by the label to use for each row. If None, an empty
dict is used and no rows are added.
Returns
-------
DataFrame
Single-column DataFrame with the computed model info.
"""
if info_dict is None:
info_dict = {}
out = []
index = []
for i in info_dict:
if isinstance(info_dict[i], dict):
# this is a specific model info_dict, but not for this result...
continue
try:
out.append(info_dict[i](result))
except AttributeError:
out.append("")
index.append(i)
out = pd.DataFrame({str(result.model.endog_names): out}, index=index)
return out
def _make_unique(list_of_names):
"""
Ensure a list of names contains no duplicates
Parameters
----------
list_of_names : list[str]
The candidate names.
Returns
-------
list[str]
`list_of_names` unchanged if all entries are already unique.
Otherwise, a list of the same length where repeated names have
had roman-numeral-like "I" suffixes appended to disambiguate them
(pandas does not allow duplicate column names when merging).
"""
if len(set(list_of_names)) == len(list_of_names):
return list_of_names
# pandas does not like it if multiple columns have the same names
from collections import defaultdict
name_counter = defaultdict(str)
header = []
for _name in list_of_names:
name_counter[_name] += "I"
header.append(_name + " " + name_counter[_name])
return header
def summary_col(results, float_format="%.4f", model_names=(), stars=False,
info_dict=None, regressor_order=(), drop_omitted=False,
include_r2=True, fixed_effects=None, fe_present="Yes",
fe_absent=""):
"""
Summarize multiple results instances side-by-side (coefs and SEs)
Parameters
----------
results : statsmodels results instance or list of result instances
float_format : str, optional
float format for coefficients and standard errors
Default : '%.4f'
model_names : list[str], optional
Must have same length as the number of results. If the names are not
unique, a roman number will be appended to all model names
stars : bool
print significance stars
info_dict : dict, default None
dict of functions to be applied to results instances to retrieve
model info. To use specific information for different models, add a
(nested) info_dict with model name as the key.
Example: `info_dict = {"N":lambda x:(x.nobs), "R2": ..., "OLS":{
"R2":...}}` would only show `R2` for OLS regression models, but
additionally `N` for all other results.
Default : None (use the info_dict specified in
result.default_model_infos, if this property exists)
regressor_order : list[str], optional
list of names of the regressors in the desired order. All regressors
not specified will be appended to the end of the list.
drop_omitted : bool, optional
Includes regressors that are not specified in regressor_order. If
False, regressors not specified will be appended to end of the list.
If True, only regressors in regressor_order will be included.
include_r2 : bool, optional
Includes R2 and adjusted R2 in the summary table.
fixed_effects : list[str], optional
List of categorical variables for which to indicate presence of
fixed effects.
fe_present : str, optional
String to indicate the presence of fixed effects. Default is "Yes".
fe_absent : str, optional
String to indicate the absence of fixed effects. Default is empty
string.
Returns
-------
Summary
Summary instance containing a single table with the coefficients
and standard errors of all results, side-by-side.
"""
if not isinstance(results, list):
results = [results]
cols = [_col_params(x, stars=stars, float_format=float_format,
include_r2=include_r2) for x in results]
# Unique column names (pandas has problems merging otherwise)
if model_names:
colnames = _make_unique(model_names)
else:
colnames = _make_unique([x.columns[0] for x in cols])
for i in range(len(cols)):
cols[i].columns = [colnames[i]]
def merg(x, y):
return x.merge(y, how="outer", right_index=True, left_index=True)
# Changes due to how pandas 2.2.0 handles merge
index = list(cols[0].index)
for col in cols[1:]:
for key in col.index:
if key not in index:
index.append(key)
for special in (("R-squared", ""), ("R-squared Adj.", "")):
if special in index:
index.remove(special)
index.insert(len(index), special)
summ = reduce(merg, cols)
summ = summ.reindex(index)
if regressor_order:
varnames = summ.index.get_level_values(0).tolist()
vc = pd.Series(varnames).value_counts()
varnames = vc.loc[vc == 2].index.tolist()
ordered = [x for x in regressor_order if x in varnames]
unordered = [x for x in varnames if x not in regressor_order]
new_order = ordered + unordered
other = [x for x in summ.index.get_level_values(0)
if x not in new_order]
new_order += other
if drop_omitted:
for uo in unordered:
new_order.remove(uo)
summ = summ.reindex(new_order, level=0)
idx = []
index = summ.index.get_level_values(0)
for i in range(0, index.shape[0], 2):
idx.append(index[i])
if (i + 1) < index.shape[0] and (index[i] == index[i + 1]):
idx.append("")
else:
idx.append(index[i + 1])
summ.index = idx
# add fixed effects info
if fixed_effects:
if not info_dict:
info_dict = {}
for fe in fixed_effects:
info_dict[fe + " FE"] = (
lambda x, fe=fe, fe_present=fe_present, fe_absent=fe_absent:
fe_present
if any((f"C({fe})" in param) for param in x.params.index)
else fe_absent
)
# add infos about the models.
if info_dict:
cols = [_col_info(x, info_dict.get(x.model.__class__.__name__,
info_dict)) for x in results]
else:
cols = [_col_info(x, getattr(x, "default_model_infos", None)) for x in
results]
# use unique column names, otherwise the merge will not succeed
for df, name in zip(cols, _make_unique([df.columns[0] for df in cols]), strict=True):
df.columns = [name]
info = reduce(merg, cols)
dat = pd.DataFrame(np.vstack([summ, info])) # pd.concat better, but error
dat.columns = summ.columns
dat.index = pd.Index(summ.index.tolist() + info.index.tolist())
summ = dat
summ = summ.fillna("")
# fixed effects processing
if fixed_effects:
index_series = pd.Series(summ.index, index=summ.index)
skip_flag = index_series.apply(
lambda x: any((f"C({fe})" in x) for fe in fixed_effects)
)
skip_next_flag = skip_flag.shift(fill_value=False)
final_skip = skip_flag | skip_next_flag
summ = summ[~final_skip]
r_squared_rows = summ.index[summ.index.str.contains("R-squared")]
r_squared_section = summ.loc[r_squared_rows]
summ = summ.drop(index=r_squared_rows)
summ = pd.concat([summ, r_squared_section])
smry = Summary()
smry._merge_latex = True
smry.add_df(summ, header=True, align="l")
smry.add_text("Standard errors in parentheses.")
if stars:
smry.add_text("* p<.1, ** p<.05, ***p<.01")
return smry
def _formatter(element, float_format="%.4f"):
"""
Format a single element as a string
Parameters
----------
element : object
The value to format. Formatted as a float if possible, otherwise
converted to a string.
float_format : str
The format string to apply if `element` can be formatted as a
float.
Returns
-------
str
The formatted, whitespace-stripped value.
"""
try:
out = float_format % element
except (ValueError, TypeError):
out = str(element)
return out.strip()
def _df_to_simpletable(df, align="r", float_format="%.4f", header=True,
index=True, table_dec_above="-", table_dec_below=None,
header_dec_below="-", pad_col=0, pad_index=0):
"""
Convert a DataFrame to a SimpleTable
Parameters
----------
df : DataFrame
The DataFrame to convert.
align : str
Data alignment (l/c/r).
float_format : str
Formatting to apply to float data columns.
header : bool
If True, use the DataFrame column labels as the table header.
index : bool
If True, use the DataFrame row labels as the table stubs.
table_dec_above : str
Character used for the decoration line above the table.
table_dec_below : str
Character used for the decoration line below the table.
header_dec_below : str
Character used for the decoration line below the header.
pad_col : int
Extra spaces to add to the column separator.
pad_index : int
Extra spaces to add after each stub.
Returns
-------
SimpleTable
The formatted table.
"""
dat = df.copy()
try:
dat = dat.map(lambda x: _formatter(x, float_format))
except AttributeError:
dat = dat.applymap(lambda x: _formatter(x, float_format))
if header:
headers = [str(x) for x in dat.columns.tolist()]
else:
headers = None
if index:
stubs = [str(x) + int(pad_index) * " " for x in dat.index.tolist()]
else:
dat.iloc[:, 0] = [str(x) + int(pad_index) * " "
for x in dat.iloc[:, 0]]
stubs = None
st = SimpleTable(np.array(dat), headers=headers, stubs=stubs,
ltx_fmt=fmt_latex, txt_fmt=fmt_txt)
st.output_formats["latex"]["data_aligns"] = align
st.output_formats["latex"]["header_align"] = align
st.output_formats["txt"]["data_aligns"] = align
st.output_formats["txt"]["table_dec_above"] = table_dec_above
st.output_formats["txt"]["table_dec_below"] = table_dec_below
st.output_formats["txt"]["header_dec_below"] = header_dec_below
st.output_formats["txt"]["colsep"] = " " * int(pad_col + 1)
return st
def _simple_tables(tables, settings, pad_col=None, pad_index=None):
"""
Convert a list of DataFrames to a list of SimpleTable instances
Parameters
----------
tables : list of DataFrame
The tables to convert.
settings : list of dict
Formatting settings associated with each entry in `tables`, as
used by `add_df`.
pad_col : list of int, optional
Extra spaces to add to the column separator of each table. If
None, no extra padding is added.
pad_index : list of int, optional
Extra spaces to add after each stub of each table. If None, no
extra padding is added.
Returns
-------
list of SimpleTable
The formatted tables.
"""
simple_tables = []
float_format = settings[0]["float_format"] if settings else "%.4f"
if pad_col is None:
pad_col = [0] * len(tables)
if pad_index is None:
pad_index = [0] * len(tables)
for i, v in enumerate(tables):
index = settings[i]["index"]
header = settings[i]["header"]
align = settings[i]["align"]
simple_tables.append(_df_to_simpletable(v, align=align,
float_format=float_format,
header=header, index=index,
pad_col=pad_col[i],
pad_index=pad_index[i]))
return simple_tables