Hello

I want to list the "top 10" causes of death by age group.
The -groups- command works nicely for this:

Code:
bysort agegrp: groups cause, select(10) order(high)
That command gives me several separate tables, one for each agegrp. Is anyone aware of a method that would output a single table with agegrps going across in columns?

Thanks