| ![]() |
From | "Michael Blasnik" <michael.blasnik@verizon.net> |
To | <statalist@hsphsun2.harvard.edu> |
Subject | Re: st: an ordinary two-way table |
Date | Sat, 12 May 2007 09:52:01 -0400 |
... The program apparently wrapped in the emailing at this section:syntax varlist( min=1 max=2) [if] [in], values(numlist) [MISSing] * if "`missing'"!="" { local novarlist "novarlist" }
This should be two lines
line 1:
syntax varlist( min=1 max=2) [if] [in], values(numlist) [MISSing] *
line 2:
if "`missing'"!="" { local novarlist "novarlist"}
The second line should really be split up given more recent Stata conventions, as:
if "`missing'"!="" {
local novarlist "novarlist"
}
* * 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/
© Copyright 1996–2025 StataCorp LLC | Terms of use | Privacy | Contact us | What's new | Site index |