Dear Stata users,
I have data with long variable names. When I want to use "summarize", it abbreviates the variable names.
I heard that tabstat works better. However, in contrast to summarize, tabstat requires a varlist
works fine. But
Does not work. It says varlist required.
Gives, varlist not found. How do I get tabstat to display all variables?
Is there an easy way to put all variables in a varlist?
Tom
I have data with long variable names. When I want to use "summarize", it abbreviates the variable names.
I heard that tabstat works better. However, in contrast to summarize, tabstat requires a varlist
Code:
describe, varlist
Code:
tabstat, varlist
Code:
tabstat varlist
Is there an easy way to put all variables in a varlist?
Tom
Comment