Hi there,
I am producing a summary table with a number of statistics in (number, mean, median, standard deviation, IQR) in a two way table for 2 variables. However, on the output of the table it does not label what each number represents and I wondered if anyone knew what I needed to add to my code to solve this. I have attached my code used and I am using Stata/IC 14.1 version
Many thanks
Kate
I am producing a summary table with a number of statistics in (number, mean, median, standard deviation, IQR) in a two way table for 2 variables. However, on the output of the table it does not label what each number represents and I wondered if anyone knew what I needed to add to my code to solve this. I have attached my code used and I am using Stata/IC 14.1 version
Code:
table treat data,c(n gcsscore mean gcsscore sd gcsscore median gcsscore iqr gcsscore) format(%9.1f)
Kate