Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: RE: Re: loop code problem


From   "Li, Ihsuan" <[email protected]>
To   "[email protected]" <[email protected]>
Subject   st: RE: Re: loop code problem
Date   Mon, 23 Mar 2009 18:53:35 -0500

Hi, 

I am sorry about the variable names. Here is the actual codes and results. There are 459 observations, listed are results for eight observations. 
Instead of a column of the names of the matched companies under matchernum, I get one same number under it.
For example, in row five, cusip #40707105, the company is Hamilton bros, its unique id is 9118, it was matched to Atna (row1). 

Two questions really:
1. why is it returning identical number under matchernum?
2. how can I get it return the "name" instead of the id?

I hope I am making sense now.

Thanks!

Ihsuan


----------------------------------------

gen matcheri=.
gen matcherj=.
gen matchernum=.

forvalues i=1(1) 459 {
forvalues j=`i'(1) 459 {
replace matcheri=1 in `i' if lister[`i']== id[`j'] & lister[`i']!=. & id[`j'] !=.
replace matcherj=1 in `j' if lister[`i']== id[`j'] & lister[`i']!=. & id[`j'] !=.
replace matchernum=lister[`i']  if lister[`i']== id[`j'] & lister[`i']!=. & id[`j'] !=.
}
}


Result:

cusip		name			lister	id	matcheri 	matcherj	matchernum	
1		Ahtna			9118		4837	1		.		9118
2		Aleut			4654		4885	1		.		9118
3		Arctic Slope	278		9133	1		.		9118
4		Bering Strait	3506		4833	1		.		9118
40707105	HAMILTON BROS	.		9118	.		1		9118	
81611405	SEITEL INC		.		4742	.		1		9118
82524102	SHOREWOOD CORP	.		7864	.		1		9118
82770101	SILVER DINER 	.		4235	.		1		9118



--------------------------------------



-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Martin Weiss
Sent: Monday, March 23, 2009 4:24 PM
To: [email protected]
Subject: st: Re: loop code problem

<>

Where in your dataset is this variable "lister" that you condition on in the 
loop? And where do you actually fill the "matchedname" variable whose 
contents you complain about?


HTH
Martin
_______________________
----- Original Message ----- 
From: "Li, Ihsuan" <[email protected]>
To: <[email protected]>
Sent: Monday, March 23, 2009 10:00 PM
Subject: st: loop code problem


> Hi statalisters:
>
> I can't figure out the correct coding to create a new variable 
> "matchedname". My data was retrieved using propensity score matching 
> technique and it returned _id which is unique to each firm. Each firm also 
> has an unique cusip number. The first three firms (atna, Sealaska, and 
> aleut) were matched to three other firms (petrox, Oregon, and ripley). I 
> know that from the _n1 column, which lists the matched company's 
> particular id.
>
> What I am trying to do is create string variable "matchedname" that lists 
> the names of the three firms that were matched to the first three 
> observations.
>
>
> Example of my data:
>
> Firm cusip _n1 _id matchedname
> atna 100 2569 9521
> sealaska 101 4526 9823
> aleut 104 325 357
> petrox 10001 . 2569
> oregon corp 10002 . 4526
> ripley 10003 . 325
>
>
> I tried the following code, and it returned the same _n1 on the 
> matchedname column instead:
>
> . gen matcheri=.
> (6 missing values generated)
>
> . gen matcherj=.
> (6 missing values generated)
>
> . gen matchernum=.
> (6 missing values generated)
>
> . forvalues i=1(1) 6 {
>  2. forvalues j=`i'(1) 6 {
>  3. replace matcheri=1 in `i' if lister[`i']== id[`j'] & lister[`i']!=. & 
> id[`j'] !=.
>  4. replace matcherj=1 in `j' if lister[`i']== id[`j'] & lister[`i']!=. & 
> id[`j'] !=.
>  5. replace matchernum=lister[`i']  if lister[`i']== id[`j'] & 
> lister[`i']!=. & id[`j'] !=.
>  6. }
>  7. }
>
>
> What is wrong with this code?
>
>
> Thanks in advance.
>
> Ihsuan
>
>
>
>
> *
> *   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index