Completed in {{ n_iter }} iterations.
{% endif %}| Parameter | Coefficient | Std. Error | z-stat | P>|z| | {% if coefficients[0].ci_lower is defined and coefficients[0].ci_lower != '' %} | [0.025 | 0.975] | {% endif %}
|---|---|---|---|---|---|---|---|
| {{ coef.name }} | {{ coef.coef|round(4) }} | {{ coef.se|round(4) }} | {{ coef.zstat|round(3) }} | {{ coef.pvalue|pvalue_format }} | {{ coef.stars }} | {% if coef.ci_lower is defined and coef.ci_lower != '' %}{{ coef.ci_lower|round(4) }} | {{ coef.ci_upper|round(4) }} | {% endif %}
Significance: * p<0.1, ** p<0.05, *** p<0.01
{% else %}No coefficient data available.
{% endif %}| Model type | {{ model_type|default(model_info.model_type if model_info else '—') }} |
| Observations | {{ nobs|default('—')|number_format }} |
| Entities | {{ n_entities|default('—')|number_format }} |
| Log-Likelihood | {{ loglikelihood|default((fit_statistics|default({})).get('loglikelihood', '—'))|round(4) }} |
| AIC | {{ aic|default((fit_statistics|default({})).get('aic', '—'))|round(2) }} |
| BIC | {{ bic|default((fit_statistics|default({})).get('bic', '—'))|round(2) }} |
| Pseudo R² | {{ pseudo_r_squared|default((fit_statistics|default({})).get('pseudo_r_squared', '—'))|round(4) }} |
| Converged | {{ 'Yes' if converged else 'No' }} |
| Iterations | {{ n_iter }} |
| Standard errors | {{ se_type }} |