I am writing the following code:
local variables= "taxratesales taxrateVAT"
estpost tabstat `variables', statistics(mean p50 sd min max count) columns(statistics)
esttab using temp.csv, replace cells("mean p50 sd min max count") nomtitle nonumber
The output file gives me an additional row at the end of the total no of observations 'N'
How can I delete that?
Thanks
Dhruv
local variables= "taxratesales taxrateVAT"
estpost tabstat `variables', statistics(mean p50 sd min max count) columns(statistics)
esttab using temp.csv, replace cells("mean p50 sd min max count") nomtitle nonumber
The output file gives me an additional row at the end of the total no of observations 'N'
How can I delete that?
mean | p50 | sd | min | max | count | |
taxratesales | 8.288876 | 8 | 4.568087 | 0 | 115 | 88935 |
taxrateVAT | 7.30818 | 5 | 4.8678 | 0 | 65 | 93709 |
N | 96652 |
Thanks
Dhruv
Comment