Bookmark and Share

Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: st: global macro syntax for recoding missing values


From   daniel klein <[email protected]>
To   [email protected]
Subject   Re: st: global macro syntax for recoding missing values
Date   Tue, 9 Aug 2011 10:01:56 +0200

"[...] but can't figure out how to write a macro that will basically
recode "." | "99" | "-999"  == "999". "

I think Nick clarified that a macro in Stata is not what it is in e.g.
SPSS. Also you do not want missing values to be represented by
(positive) numeric values, since these values will not be excluded in
your analyses and also might be valid answers in some varibales (see
below).

I think you already gave one possible answer in your question. Modify
the last part to read

recode varlist (99 -999 999 = .)

Also see -help recode-.

You should be careful however, not to -recode- values that do not
indicate missing values to system missing values. Think about the
value "999". This value might represent a missing value in a variable
containing respondent's age but might well be a valid answer
representing  respondent's monthly income.

Best
Daniel
*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index