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
"Pavlos C. Symeou" <[email protected]>
To
"[email protected]" <[email protected]>
Subject
Re: st: Replacing duplicate values
Date
Wed, 07 Apr 2010 00:55:03 +0200
Dear Robert,
this is a very good solution to the task.
Thanks,
Pavlos
On 06/04/2010 16:57, Robert Picard wrote:
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/
*
* 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/