standard-error

Custom Standard Errors with Statsmodels / Stargazer

Custom Standard Errors with Statsmodels / Stargazer Question: I am running a series of OLS regressions in Python, where I am using standard errors that I calculate using a custom function. I am now exporting my regression results into tables, and plan on using the stargazer package (linked here). However, stargazer relies on regression results …

Total answers: 1

Python – Performing t-test of estimate with standard error

Python – Performing t-test of estimate with standard error Question: I’m wondering if there is a way to perform a two-tailed t-test for an estimate, given its standard error and the number of degrees of freedom? The estimate is read from another software. I have been using the t.dist.2t(abs(estimate/SE), df) in Excel, but having it …

Total answers: 1