I have been working through a macroeconomic panel data set (n=30, t=31; OECD) using PLM, which has been a tremendous help. Since many of my variables are economic growth variables over time, they are non-stationary, but I suspect many of them are cointegrated. I would like to verify that, but I can't find an easy way to do this with PLM. The procedure isn't incredibly complex--you take the OLS residuals of a bivariate comparison, then do a Dickey-Fuller test on the residuals. Has anyone seen a script that will grab the residuals and do a DF on them? Right now the best I can come up with is to 1) get the residuals, 2) find a way to merge them back into the original data (not easy since the panel is unbalanced, so the residuals are incomplete and don't match up nicely with the original data), 3) then finally do a Dickey-Fuller using the merged data-set.
I tried doing this manually, but I received the following error, and in fact, I receive this error on about half of my DF tests, even using the original data set.
** Error in lm.fit(x, y, offset = offset, singular.ok = singular.ok, ...) : ** 0 (non-NA) cases
In fact, and this may be a separate question, but most of the DF tests simply aren't working on my data. The DF test seems straightforward, since the "purtest" instructions seem clear. However, only the test="hadri" using a formula of "~trend" gives me results. For example, if I test GDP per capita for stationarity, which of course will be nonstationary, I use:
** purtest(gdpcap~trend,data=econ,index="country",pmax=5,test="hadri")
then I get a good result. However, if I use any of the other three tests (madwu, levinlin or ips) then I get this error:
** Error in lm.fit(X, y) : NA/NaN/Inf in foreign function call (arg 4)
Then if I try to test inflation (CPI), then I get the first error listed above:
** Error in lm.fit(x, y, offset = offset, singular.ok = singular.ok, ...) : ** 0 (non-NA) cases
I thought perhaps it was related to the number of missing data, but CPI has a very low instance of missing data (51), while the income tax DF test works fine, and has a very high instance of missing data (611). I have a total of 930 cases.
My primary question is about cointegration. But thoughts on any of these other issues would be appreciated.