Dear StataList,

when I run the code below, I almost get what I want. The only problem is that the number of individuals (N_clust) and the number of observations (N) appear with three zero digits behind the point: eg 125.000.
I am not sure how to fix that problem.

Code:
esttab est1 est2 est3 est4 using x.tex, label replace unstack b(3) se(3) numbers stats(r2 N_clust N, labels(R2 Individuals Observations))
I tried:
Code:
esttab est1 est2 est3 est4 using x.tex, label replace unstack b(3) se(3) numbers stats(r2 N_clust N, fmt(%9.0f) labels(R2 Individuals Observations))
But then, r2 is all zero because each r2 in the four linear regressions has digits after the zero.

I would greatly appreciate some help on this issue.

Thanks,
Nico