Kompal Sinha
> > I want to generate a new variable based on a variable x.
> That is the new
> > variable should have value 1 if x=2, value 6 if x=3 and
> so on. How do I
> > proceed.
I don't know what you mean by "and so on". I can't
see a pattern in these rules, but you can use
as many steps as it takes:
gen new = 1 if x == 2
replace new = 6 if x == 3
replace new = ... if x == ...
An alternative with just integers is to copy x
to a new variable and use -recode-.
Nick
[email protected]
*
* 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/