Dear All, I have the code
where -outreg2- has to be installed first by -ssc install outreg2-.
The result is:
My question is: how can I change the decimal of the first (1) N column to 0, e.g., 74, 74, 69, 74, and 74.
Code:
sysuse auto, clear global all "price mpg rep78 headroom trunk" sum $all outreg2 using "auto_sum", sum(detail) replace label word dec(3) sortvar($all) keep($all) eqkeep(N mean sd p5 p25 p50 p75 p95)
The result is:
My question is: how can I change the decimal of the first (1) N column to 0, e.g., 74, 74, 69, 74, and 74.
Comment