Hi there,
I'm using tabstat to summarize a number of variables. They have long variable names (about 20 characters, sometimes more) and they are quite similar. Tabstat truncates them. Is there any way to expand the column with the variable name so I can see the entire name?
Example below:
sysuse auto, clear
rename foreign foreigncartype1renamed
generate foreigncartype2renamed = foreigncartype1renamed
tabstat foreigncartype1renamed foreigncartype2renamed, col(statistics)
Using this example, I know I can differentiate between the two variables since I can see the portion of the variable name that's different (1 and 2 in the table), but in other cases, this isn't the case.
Thank you in advance for any assistance you can offer.
Best,
Erika
I'm using tabstat to summarize a number of variables. They have long variable names (about 20 characters, sometimes more) and they are quite similar. Tabstat truncates them. Is there any way to expand the column with the variable name so I can see the entire name?
Example below:
sysuse auto, clear
rename foreign foreigncartype1renamed
generate foreigncartype2renamed = foreigncartype1renamed
tabstat foreigncartype1renamed foreigncartype2renamed, col(statistics)
Using this example, I know I can differentiate between the two variables since I can see the portion of the variable name that's different (1 and 2 in the table), but in other cases, this isn't the case.
Thank you in advance for any assistance you can offer.
Best,
Erika
Comment