Dear All,

First and foremost, this is my first post here so hello everyone, and my apologies if I make a mistake in questioning.
I use Stata 16 to compare the average percentage of employment growth (emp_growth_p) and sales growth(output_growth_p) between High-growth (HG) and non- High-growth (NHG) Domestic firms in different sectors. My dataset is attached. I apply these 3 commands to reproduce TABLE 2.1 at this link:
https://drive.google.com/file/d/1PHF...ew?usp=sharing
  1. table isic growth, by(sector_MS), if ownership==1
  2. table isic growth, contents(mean emp_growth_p) by(sector_MS) , if ownership==1
  3. table isic growth, contents(mean output_growth_p) by(sector_MS) , if ownership==1
Is there any way that I can have all these columns in one table rather than 3 separate tables? I used the code below but it gives me the mean variables in a column under each other rather than in a row.
table isic growth, contents(freq mean emp_growth_p mean output_growth_p) by(sector_MS), if ownership==1