I'd like to produce a table of means by categorical variable that orders the results by mean, from highest to lowest, instead of by the alphabetical order of the categorical variable.

Example below where results are presented in alphabetical order (I know the example doesn't really make any sense because it's all means with only 1 data point but it works to illustrate the point).

I've tried the "order" option but STATA tells me it's not allowed. Just a novice with STATA's new table commands.

Code:
sysuse auto
table ( make ) (), statistic(mean headroom) nformat(%9.1f  mean)