Thank you very much for this Nick. I however have an extension to the
question. What if I want to do the same exercise for say 100 subjects but
ensuring that for every 10 subjects then number of treatments are equal i.e
A=5 B=5.
-----Original Message-----
From: Nick Cox [mailto:[email protected]]
Sent: 03 November 2003 12:00
To: [email protected]
Subject: st: Re: random allocation [was:RE: programming question]
Consider the results of
. set seed 31103
. set obs 10
. gen id = _n
. gen random = uniform()
. sort random
. gen treatment = cond(_n <= 5, "A", "B")
. sort id
. l id treatment
Nick
[email protected]
Banya, Winston
> Can someone pleases show me the command if any that
> randomly allocates 2
> treatments for example to say 10 people. I need to assign 2
> treatments A and
> B to 10 people in equal numbers.
>
> I was wondering that if the first line is
>
> set obs 10, then what will follow for the random allocation?
>
*
* 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/
*
* 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/