Hello,
I have been working on panel data where I have different values of GDP growth (annual %), poverty headcount and other variables for different countries from 1991-2017. I want to estimate the cumulative rate of GDP growth per countries from 1991-2017. The formula for this calculation is given by:
(1+G)= (1+g1)(1+g2)(1+g3)(1+g4)+........(1+gt)
where G is the cumulative growth rate of GDP growth and, g1, g2, g3, g4 and gt are the GDP growth rate for countries in different years.
I had extracted some parts of the data which go from 1991 to 2017 and the data looks this way in Stata:
clear all
input str10 country year gdpgrowth
country year GDP
Albania 1996 0.091
Albania 2002 0.0423
Albania 2005 0.0572
Albania 2008 0.0376
Albania 2012 0.0141
Algeria 1995 0.0379
Algeria 2011 0.0289
Argentina 1991 0.1266
Argentina 1992 0.1194
Argentina 1993 0.059
Argentina 1994 0.0583
Argentina 1995 -0.0285
Argentina 1996 0.055
Argentina 1997 0.081
Argentina 1998 0.0385
Argentina 1999 -0.033
Argentina 2000 -0.0078
Argentina 2001 -0.044
Argentina 2002 -0.1089
Argentina 2003 0.0883
Argentina 2004 0.0902
Argentina 2005 0.088
Argentina 2006 0.0804
Argentina 2007 0.090
Argentina 2008 0.0405
Argentina 2009 -0.059
Argentina 2010 0.10125
end
Thanks,
Pythagore
I have been working on panel data where I have different values of GDP growth (annual %), poverty headcount and other variables for different countries from 1991-2017. I want to estimate the cumulative rate of GDP growth per countries from 1991-2017. The formula for this calculation is given by:
(1+G)= (1+g1)(1+g2)(1+g3)(1+g4)+........(1+gt)
where G is the cumulative growth rate of GDP growth and, g1, g2, g3, g4 and gt are the GDP growth rate for countries in different years.
I had extracted some parts of the data which go from 1991 to 2017 and the data looks this way in Stata:
clear all
input str10 country year gdpgrowth
country year GDP
Albania 1996 0.091
Albania 2002 0.0423
Albania 2005 0.0572
Albania 2008 0.0376
Albania 2012 0.0141
Algeria 1995 0.0379
Algeria 2011 0.0289
Argentina 1991 0.1266
Argentina 1992 0.1194
Argentina 1993 0.059
Argentina 1994 0.0583
Argentina 1995 -0.0285
Argentina 1996 0.055
Argentina 1997 0.081
Argentina 1998 0.0385
Argentina 1999 -0.033
Argentina 2000 -0.0078
Argentina 2001 -0.044
Argentina 2002 -0.1089
Argentina 2003 0.0883
Argentina 2004 0.0902
Argentina 2005 0.088
Argentina 2006 0.0804
Argentina 2007 0.090
Argentina 2008 0.0405
Argentina 2009 -0.059
Argentina 2010 0.10125
end
Thanks,
Pythagore
Comment