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: RE: why -recode-takes longer than -replace-


From   "Martin Weiss" <[email protected]>
To   <[email protected]>
Subject   st: RE: why -recode-takes longer than -replace-
Date   Sun, 27 Jun 2010 23:31:51 +0200

<>


BTW, Amanda, you may also want to upgrade to MP 11.1, which gives you even
better timings. In my case, with 4 cores, the -replace- advantage is almost
95%. 

See also the latest installment of http://www.stata.com/statamp/statamp.pdf,
pages 105/106, where -replace- profits from MP much more than -recode-. 


HTH
Martin


-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Amanda Fu
Sent: Sonntag, 27. Juni 2010 22:11
To: [email protected]
Subject: st:why -recode-takes longer than -replace-

Dear Statalisters,

I am just curious about a fact noticeable when I use -recode- (1 as
following) or -replace- (2 as following)  to recode all the variables
in a data set (size :  52,996,616) using Stata 10.1 SE: the recode
command  takes much longer than replace. I was wondering what causes
the speed difference and if the speed difference implies for large
data set it would be better to use replace instead of recode.

1.  slower
.recode _all (8=.) (9=.)

2. faster
foreach v of varlist * {
.replace `v'=. if `v'==8 | `v'==9
}
end

Thanks for your time!

Sincerely,
Amanda
*
*   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/


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