I have manipulated my data set such that it contains only a number of summary statistics that I want to export to latex, but I have not been able to do so using the estpost esttab sequence. Here is a MWE:

Code:
sysuse auto, clear
collapse (sum) price mpg, by(make)
estpost tabstat price mpg, by(make)
esttab
I want to transfer the output generated by "estpost tabstat ..." command into a latex table but esttab generates an empty table.