Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: Deleting variables for lack of observations


From   John Hennen <[email protected]>
To   [email protected]
Subject   st: Deleting variables for lack of observations
Date   Wed, 26 Feb 2003 18:43:41 -0500

Joel Clovis wrote:

> I want to delete variables if they do not contain enough observatoins.  I've
> tried to make use of Nick Coxs'  npresent & dropmiss (STB-49:dm67 &
> STB-60: dm89)  to no avail, some attempts are in the following manner:
>
> foreach var of varlist cba2tfina-region {
>             keep `var' if r(npresent)>=30
>     }

>
> this brings up invalid syntax, and I'm not sure why
>

REPLY-
Assuming that the several variables in the varlist cba2tfina - region are not
strings, did you want something like this:

foreach var of varlist cba2tfina-region {
            qui npresent `var'
            replace `var' = .  if r(N) <30
    }

John Hennen
Boston


*
*   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