Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

Re: st: simple program


From   Richard Williams <[email protected]>
To   [email protected]
Subject   Re: st: simple program
Date   Tue, 21 Jun 2005 08:51:52 -0500

At 09:43 AM 6/21/2005 -0400, Seyda G Wentworth wrote:
Hello,
I have a long list of exported goods and their annual values (y_1999; y_2000; y_2001...). I want to compute the growth rate for each of these products between 1999-2000 called gro2000; between 2000-2001 called gro2001; and so on till 2003-2004. So I need to create 5 variables. I'm trying to write a simple program of the following sort:

program define growth
local i=1999
while (`i'<=2004) {
gen gro`i'+1=(y_`i'+1-y_`i')/y_`i'
local i=`i'+1
}
end
Instead of all the `i'+1, after the while command insert

local j = `i' + 1

and then use `j' instead of `i' + 1



-------------------------------------------
Richard Williams, Notre Dame Dept of Sociology
OFFICE: (574)631-6668, (574)631-6463
FAX:    (574)288-4373
HOME:   (574)289-5227
EMAIL:  [email protected]
WWW (personal):    http://www.nd.edu/~rwilliam
WWW (department):    http://www.nd.edu/~soc

*
*   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/



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