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]

st: replace blank string values


From   richard boylan <[email protected]>
To   [email protected]
Subject   st: replace blank string values
Date   Wed, 30 Jun 2010 13:17:42 -0500

I have a dataset which is a panel: id, year where id is the numeric
value the individual.

I also have the name of the individual, however, for some
observations, the name is missing.

How do I go about replacing the missing values for name?

One way that works is
sort id year
by id: replace name = name[_n + 1] if name == "" & name[_n + 1] ~= ""
by id: replace name = name[_n + 1] if name == "" & name[_n + 1] ~= ""
...
by id: replace name = name[_n + 1] if name == "" & name[_n + 1] ~= ""

However, is there a more efficient way of doing this, say using egen?

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