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]
st: RE: RE: Writing the value of a variable in another variable in a selective way
From
"Mak, Timothy" <[email protected]>
To
"'[email protected]'" <[email protected]>
Subject
st: RE: RE: Writing the value of a variable in another variable in a selective way
Date
Tue, 31 May 2011 17:32:44 +0000
I think Nick meant:
gen partnerprofit = profit[5] in 3
But following this logic, and if your dataset is not large, you could do it in a loop, I think:
gen partnerprofit = .
forval i=1/`=c(N)' {
local partnerid = partnerid[`i']
replace partnerprofit = profit[`partnerid'] in `i'
}
where I assume you have a partnerid variable which gives you the observation number of the partner.
If your id's do not go in 1,2,3,...,n, however, you may need to do a bit more programming... and probably -merge- is the easiest.
Tim
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Nick Cox
Sent: 31 May 2011 17:31
To: '[email protected]'
Subject: st: RE: Writing the value of a variable in another variable in a selective way
If the problem is just this, the solution would be
gen partnerprofit = profit[5] in 13
In general, think about a -merge-.
Nick
[email protected]
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of [email protected]
Sent: 31 May 2011 17:20
To: [email protected]
Subject: st: Writing the value of a variable in another variable in a selective way
Hello,
How can I write the value of the variable called profit for e.g.,
subject i as the value into another variable called "partnerprofit" of
another subject j?
For example: I am subject 3, my partner is subject 5; his profit is 13,
now I would like to stata write in my "partnerprofit" the value 13.
Thank you very much for your help!
Ozgur
--
Dr. Özgür Gürerk
Lehrstuhl für Mikroökonomie & Laboratorium für experimentelle
Wirtschaftsforschung
(Microeconomics & Laboratory for Experimental Economics)
Universität Erfurt, Nordhäuser Str. 63, D-99089 Erfurt
Tel: +49 361 7374561
Fax: +49 361 7374569
www.uni-erfurt.de/elab
--
*
* 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/
*
* 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/
*
* 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/