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: Replacing duplicate values


From   Robert Picard <[email protected]>
To   [email protected]
Subject   Re: st: Replacing duplicate values
Date   Tue, 6 Apr 2010 10:57:33 -0400

How about:

local ncite 5
forvalues i = 1/`=`ncite'-1' {
	forvalues j = `=`i'+1'/`ncite' {
		qui replace citation_`i' = citation_`j' if citation_`i' == ""
		qui replace citation_`j' = "" if citation_`i' == citation_`j'
	}
}

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