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: sampling with replacement
From
Joerg Luedicke <[email protected]>
To
[email protected]
Subject
Re: st: sampling with replacement
Date
Fri, 25 Jan 2013 11:05:14 -0500
One possibility could be:
*------------------------------
mat swr = J(100,2,.)
mat colnames swr = ndraw draw
clear
set obs 4
gen x4 = _n*10+1
forval i = 1/100 {
cap drop u
gen u = runiform()
sort u
loc d = x4[1]
mat swr[`i',1] = `i'
mat swr[`i',2] = `d'
}
mat li swr
*------------------------------
But have a look at Bill Gould's nice blog postings on random number
generation in Stata, especially part 3:
http://blog.stata.com/2012/08/29/using-statas-random-number-generators-part-3-drawing-with-replacement/
Joerg
On Fri, Jan 25, 2013 at 10:30 AM, Alok K. Bohara <[email protected]> wrote:
> Hello:
>
> How can I use stata to draw a sample with replacement?
>
> I have 4 tokens marked; X4: (11, 21, 31, 41). Say, I want to draw it randomly (with replacement) 100 times, and store (and save) them as a vector of X100.
>
> Thanks
> Alok Bohara
> UNM
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/faqs/resources/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/faqs/resources/statalist-faq/
* http://www.ats.ucla.edu/stat/stata/