Nick
[email protected]
> -----Original Message-----
> From: [email protected]
> [mailto:[email protected]]On Behalf Of
> Kakatua Kutta
> Sent: 24 March 2004 23:28
> To: [email protected]
> Subject: st: Urgent: Saving Coefficient
>
>
> Country Code Year GDP
> BAN 1960 65
> BAN 1965 75
> BAN 1970 85
> CAN 1960 25
> CAN 1965 35
> CAN 1970 45
>
> Dear Stata Users,
>
> Suppose I have the above data set.
> 1.I want to regress GDP on year (reg GDP Year) for each country
> 2.Then I want to create a variable named "coeff" which saves
> the coefficent of Year variable from the each country
> regression above.
> gen coeff=_b[year]
> _________________________________
>
> I have used the following method:
> *************************************
> use data
> sort countrycode year
> encode countrycode,gen(id)
> tsset id year
> forv id=1/2 {
> reg gdp year
> gen coeff=_b[year]
> }
>
> It is not working. Is there any way to make it work or you
> guys have better solution?
> I would highly appreciate any help.
>
> Thanks
>
> Kakatua
>
>
> --
> ___________________________________________________________
> Sign-up for Ads Free at Mail.com
> http://promo.mail.com/adsfreejump.htm
>
> *
> * 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/