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: Randomly change a date in Stata


From   Maarten Buis <[email protected]>
To   [email protected]
Subject   Re: st: Randomly change a date in Stata
Date   Tue, 19 Jun 2012 13:55:00 +0200

On Tue, Jun 19, 2012 at 1:37 PM, Tim Evans wrote:
> If I use the following, I don't actually manage to re-create the same date:
>
> set seed 339487731
> gen date7 = datediag + ceil(11 * runiform()) - 6
> gen date8 = datediag + ceil(11 * runiform()) - 6
>
> The dates are different - do you know why this may be?

You will get the same dates when you precede the command with the same seed:

set seed 339487731
gen date7 = datediag + ceil(11 * runiform()) - 6
set seed 339487731
gen date8 = datediag + ceil(11 * runiform()) - 6

-- Maarten

--------------------------
Maarten L. Buis
Institut fuer Soziologie
Universitaet Tuebingen
Wilhelmstrasse 36
72074 Tuebingen
Germany


http://www.maartenbuis.nl
--------------------------
*
*   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