Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

Re: st: Sample command question


From   Richard Williams <[email protected]>
To   [email protected]
Subject   Re: st: Sample command question
Date   Sun, 29 Oct 2006 20:03:55 -0500

At 07:48 PM 10/29/2006, David McClintick wrote:
I have the written the following code to run a sample command on each
one of my variables:

local i=1
foreach x in var1-var91 {
        while `i' <=10 {
                use c:\ado\personal\easy.dta
                sample 5, count
                save mewsample`i', replace
                local i= `i' +1
}
}

However, I have a problem because there are missing values in each list,
and my random samples often return a missing value as one of their 5
terms. What's the best way to exclude missing values from the sample
generation?
Before the sample command, could you have something like

keep if !missing(`x')


-------------------------------------------
Richard Williams, Notre Dame Dept of Sociology
OFFICE: (574)631-6668, (574)631-6463
FAX: (574)288-4373
HOME: (574)289-5227
EMAIL: [email protected]
WWW (personal): http://www.nd.edu/~rwilliam
WWW (department): http://www.nd.edu/~soc
*
* 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–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index