I assume you want to sample from
a uniform distribution on some integers.
Let's suppose we want to sample from 0 ... 9.
gen random = floor(10 * uniform())
or from 00 (i.e. 0) ... 99
gen random = floor(100 * uniform())
or from 10 ... 99
gen random = 10 + floor(90 * uniform())
and so forth.
This is wrapped in an -egen- function
-rndint()- in -egenmore- on SSC,
but doing it from first principles
is better exercise.
Nick
[email protected]
Ha Thai Son
> Does any one know how to create a series of random number
> with n digit.
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/