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: add up variable / quantile


From   Nick Cox <[email protected]>
To   [email protected]
Subject   Re: st: add up variable / quantile
Date   Thu, 14 Apr 2011 16:32:26 +0100

gen var3 = var1 == var2

is certainly a good way to create a variable saying whether two
variables are the same. But what do you mean that "this is not
working"?

Note that -- necessarily -- this syntax compares values in the same
observation, and not in different observations.

gen var4 = var1 == var2[_n-1]

illustrates an extension which may be closer to what you seek.

Nick

On Thu, Apr 14, 2011 at 4:04 PM, Scharnigg, Stan (Stud. SBE)
<[email protected]> wrote:
> I tried a different approach now. I created two new variables (var1, var2), and I want to use those
> two variables to create a third variable (var3). Var3 needs to be "1" if var1 has the same values as var2
>
> So I tried this:
> gen var3 = 0
> replace var3 = 1 if var1==var2
>
> However, this is not working. Is something like this possible in Stata?
> ________________________________________
*
*   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