You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... Unfortunately, I am unable to recover the standard errors, nor the test statistic to enable me tell the significance of the estimated Propensity score model coefficients. On with my web search again, I came across your GITHUB page (https://github.com/kkranker/psweight) where you indicated some potential improvements and extensions.
I am by this letter (email) writing to ask if this has been made possible and if so, is there a way I can at least retrieve the standard errors to match the displayed coefficients of the covariates estimated from the propensity score model?....
The text was updated successfully, but these errors were encountered:
Quite honestly I haven't spent a ton of time on the statistical properties of the estimator, but imagine the normal methods apply. You will find it easier to work with the Mata code (not the .ado wrap around).*
Inside the solve()function, you should be able to add a few lines of code to produce standard errors. Specifically, you will want to look for the name that says moptimize(S). Between that line and the end of the function, you can add a line with moptimize_result_V_robust().* This will produce a variance-covariance matrix, which you can use to calculate standard errors in the usual manner. Once you have the matrix, you just need to find a way to return these results (or just display it them to the screen).
[someone] asks,
The text was updated successfully, but these errors were encountered: