Dear Stata users,

I need to estimate and compare a large number of models. To do so, I use an analogue of the following code:
Code:
clear
est clear
sysuse auto.dta

reg price mpg
est store mod_1

reg price c.mpg#c.mpg
est store mod_2

est table *, stats(N aic bic r2_a rmse)
Is there a way (i.e., an option or an alternative command) to transpose the estimates table? The model comparison would be easier if models were shown as rows and stats as columns; the default is the other way around.