Thank you very much. I will incorporate this into my startup routine. If
there were a suggestion box for Stata 10, however, I would put this in it.
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Nick Cox
Sent: Monday, June 13, 2005 11:22 AM
To: [email protected]
Subject: st: RE: default version of abbrev(n) for list?
No; I don't think so. But you can write your own command wiring this in.
program mylist
version 8
syntax [varlist] [if] [in] [, abbrev(int 16) * ]
list `varlist' `if' `in', abbrev(`abbrev') `options'
end
You can even allow abbreviations:
program myl
version 8
mylist `0'
end
program myli
version 8
mylist `0'
end
program mylis
version 8
mylist `0'
end
Nick
[email protected]
Daniel Waxman
> Is there any way to change the default for .list so that
> variable names are
> not abbreviated, or at least lengthened, without having to type
> ',abbrev(16)' every time?
>
> (currently using Stata 8, but soon to be Stata 9)
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/