Bookmark and Share

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: repeating timeseries unitroot test for set of 189 countires within panel data structure


From   Christopher Baum <[email protected]>
To   "[email protected]" <[email protected]>
Subject   st: Re: repeating timeseries unitroot test for set of 189 countires within panel data structure
Date   Tue, 31 Jul 2012 13:51:51 +0000

<>
On Jul 31, 2012, at 2:33 AM, Prakash wrote:

> My dataset actually follows panel data format but for some reason I
> need to do time series unit root test also, now as the data set
> contains 189 countries it would be a difficult proposition for me to
> create 189 data file and go for unitroot test in each of the file. Is
> there any way that I can handle the situation without creating 189
> files. I am working with stata 10 data structure is
> country year gdp gdppc credit_gdp and so on; where country ranges from
> 1-189 and year 1950-2009.

You can use a foreach or forvalues loop to apply the test to each panel:

forv i=1/189 {   // assumes no missing countries
	dfgls whatever if country == `i'
}

Kit


Kit Baum   |   Boston College Economics & DIW Berlin   |   http://ideas.repec.org/e/pba1.html
                             An Introduction to Stata Programming  |   http://www.stata-press.com/books/isp.html
  An Introduction to Modern Econometrics Using Stata  |   http://www.stata-press.com/books/imeus.html


*
*   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–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index