I am using frmttable to generate a summary table.
As far as I can see the option varlabels should automatically add variable labels in the first column of the table. Am I doing this the wrong way? Code below.
As far as I can see the option varlabels should automatically add variable labels in the first column of the table. Am I doing this the wrong way? Code below.
Code:
cls clear all set obs 1000 ge u = rnormal() label var u "Some label" su u mat a = r(mean),r(sd) frmttable, statmat(a) varlabels
Comment