Hello everyone!
I am trying to make a table of this kind:
However, instead of the layout in which it is currently presented, I would like the variables price and mpg to form two distinct supercolumns, which are further divided into mean and median. How can I do that?
I am trying to make a table of this kind:
Code:
clear all sysuse auto table foreign var, statistic(mean price mpg) statistic(median price mpg)
Comment