Hi Statalisters,
I have a couple System GMM tables that I would like to convert in the publication style where it looks similar to this:

I've managed to store the tables(General_GMM and No_GDPG_GMM) and present the number of observations (N), degrees of freedom (df_m), and the chi squared (chi2), but it's a matter of finding the right scalars to include the p values for my AR tests (first and second autocorrelation), Sargan, Hansen, and Difference-in-Hansen. Also, how can I add a title and label the tables?
This is the code that I have so far
Thank you in advance for any help!
Best regards,
Georgina
I have a couple System GMM tables that I would like to convert in the publication style where it looks similar to this:
I've managed to store the tables(General_GMM and No_GDPG_GMM) and present the number of observations (N), degrees of freedom (df_m), and the chi squared (chi2), but it's a matter of finding the right scalars to include the p values for my AR tests (first and second autocorrelation), Sargan, Hansen, and Difference-in-Hansen. Also, how can I add a title and label the tables?
This is the code that I have so far
Code:
esttab General_GMM No_GDPG_GMM, b(a3) se(a3) star(* 0.10 ** 0.05 *** 0.01) scalars(N df_m chi2) nogaps
Best regards,
Georgina
Comment