<>
Good solution, and in one line. Careful with 1 and 2, though. Does Ali
really want them to become zero?
*************
clear*
set obs 30
gen weeks=_n
gen newweek=cond(abs(round(week,12)-week)<=2,round(week,12),week)
list
*************
HTH
Martin
-----Ursprüngliche Nachricht-----
Von: [email protected]
[mailto:[email protected]] Im Auftrag von Jeph Herrin
Gesendet: Freitag, 6. Februar 2009 16:56
An: [email protected]
Betreff: Re: st: round () if
Assuming your week is integers
gen newweek=cond(abs(round(week,12)-week)<=2,round(week,12),week)
should do.
hth,
Jeph
Shehzad Ali wrote:
Hi listers,
I want to round a variable 'week' if it is within 2 weeks range of
multiples of 12 week. So 10 weeks should become 12 weeks while 9
weeks should not change. Similarly 21 weeks would not change while 25
weeks will change to 24 weeks. Is there a way to do it in Stata using
-round- or other command?
Thank you,
Shehzad
*
* 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/
*
* 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/