Print a table of results or returns SimpleTable() instance which summarizes the Generalized linear model results.
Parameters: | yname : string
xname : list of strings
title : string
returns : string
|
---|---|
Returns: | Defualt : : returns=’print’ :
Option : : returns=’text’ :
Option : : returns=’table’ :
Option : : returns=’csv’ :
Option : : returns=’latex’ : Not implimented yet : Option : : returns=’HTML’ : Not implimented yet : Examples (needs updating) : ——– : >>> import statsmodels.api as sm : >>> data = sm.datasets.longley.load() : >>> data.exog = sm.add_constant(data.exog) : >>> ols_results = sm.OLS(data.endog, data.exog).results : >>> print ols_results.summary() : ... : |
Notes
stand_errors are not implimented. conf_int calculated from normal dist.