-------------------------------------------------------------------------------
help: xtregdhp                                                   dialog: xtregd
> hp
-------------------------------------------------------------------------------

+-------+ ----+ Title +------------------------------------------------------------

xtregdhp: Han-Philips (2010) Linear Dynamic Panel Data Regression"

+-------------------+ ----+ Table of Contents +------------------------------------------------

Syntax Description Options Model Selection Diagnostic Criteria Heteroscedasticity Tests Saved Results References

*** Examples

Author

+--------+ ----+ Syntax +-----------------------------------------------------------

xtregdhp depvar indepvars [if] [in] , id(var) it(var) [ lmhet diag be fe re mfx(lin|log) predict(new_var) resid(new_var) iter(#) noconstant coll tolog level(#) ]

+-------------+ ----+ Description +------------------------------------------------------

xtregdhp estimates Han-Philips (2010) Linear Dynamic Panel Data Regression with be, fe, re Effects

R2, R2 Adjusted, and F-Test, are obtained from 4 ways: 1- (Buse 1973) R2. 2- Raw Moments R2. 3- squared correlation between predicted (Yh) and observed dependent variable (Y). 4- Ratio of variance between predicted (Yh) and observed dependent variable (Y).

- Adjusted R2: R2_a=1-(1-R2)*(N-1)/(N-K-1). - F-Test=R2/(1-R2)*(N-K-1)/(K).

+---------+ ----+ Options +----------------------------------------------------------

* id(var) Cross Sections ID variable name * it(var) Time Series ID variable name

be Between Effects (BE) fe Fixed-Effects (FE) re Random-Effects (RE)

coll keep collinear variables; default is removing collinear vari > ables.

noconstant Exclude Constant Term from Equation

iter(#) number of iterations; Default is iter(100)

level(#) confidence intervals level. Default is level(95)

mfx(lin, log) functional form: Linear model (lin), or Log-Log model (log), to compute Marginal Effects and Elasticities - In Linear model: marginal effects are the coefficients (Bm), and elasticities are (Es = Bm X/Y). - In Log-Log model: elasticities are the coefficients (Es), and the marginal effects are (Bm = Es Y/X). - mfx(log) and tolog options must be combined, to transform linear variables > to log form.

tolog Convert dependent and independent variables to LOG Form in the memory for Log-Log regression. tolog Transforms depvar and indepvars to Log Form without lost the original data variables

predict(new_variable) Predicted values variable

resid(new_variable) Residuals values variable computed as Ue=Y-Yh ; that is known as combined residual: [Ue = > U_i + E_it] overall error component is computed as: [E_it] see: xtreg postestimation##predict

+-------------------------------------+ ----+ Model Selection Diagnostic Criteria +------------------------------

diag Model Selection Diagnostic Criteria: - Log Likelihood Function LLF - Akaike Information Criterion (1974) AIC - Akaike Information Criterion (1973) Log AIC - Schwarz Criterion (1978) SC - Schwarz Criterion (1978) Log SC - Amemiya Prediction Criterion (1969) FPE - Hannan-Quinn Criterion (1979) HQ - Rice Criterion (1984) Rice - Shibata Criterion (1981) Shibata - Craven-Wahba Generalized Cross Validation (1979) GCV

+------------------------------------------+ ----+ Groupwise Panel Heteroscedasticity Tests +------------------------- lmhet Groupwise Panel Heteroscedasticity Tests: * Ho: Panel Homoscedasticity - Ha: Panel Groupwise Heteroscedasticity - Lagrange Multiplier LM Test - Likelihood Ratio LR Test - Wald Test

+---------------+ ----+ Saved Results +----------------------------------------------------

xtregdhp saves the following results in e():

*** Model Selection Diagnostic Criteria: e(N) number of observations e(r2bu) R-squared (Buse 1973) e(r2bu_a) R-squared Adj (Buse 1973) e(r2raw) Raw Moments R2 e(r2raw_a) Raw Moments R2 Adj e(f) F-test e(fp) F-test P-Value e(wald) Wald-test e(waldp) Wald-test P-Value

e(r2h) R2 Between Predicted (Yh) and Observed DepVar (Y) e(r2h_a) Adjusted r2h e(fh) F-test due to r2h e(fhp) F-test due to r2h P-Value

e(r2v) R2 Variance Ratio Between Predicted (Yh) and Observed DepVar > (Y) e(r2v_a) Adjusted r2v e(fv) F-test due to r2v e(fvp) F-test due to r2v P-Value

e(sig) Root MSE (Sigma) e(llf) Log Likelihood Function LLF e(aic) Akaike Information Criterion (1974) AIC e(laic) Akaike Information Criterion (1973) Log AIC e(sc) Schwarz Criterion (1978) SC e(lsc) Schwarz Criterion (1978) Log SC e(fpe) Amemiya Prediction Criterion (1969) FPE e(hq) Hannan-Quinn Criterion (1979) HQ e(rice) Rice Criterion (1984) Rice e(shibata) Shibata Criterion (1981) Shibata e(gcv) Craven-Wahba Generalized Cross Validation (1979) GCV

*** Groupwise Heteroscedasticity Tests: e(lmhglm) Lagrange Multiplier LM Test e(lmhglmp) Lagrange Multiplier LM Test P-Value e(lmhglr) Likelihood Ratio LR Test e(lmhglrp) Likelihood Ratio LR Test P-Value e(lmhgw) Wald Test e(lmhgwp) Wald Test P-Value

Matrixes e(b) coefficient vector e(V) variance-covariance matrix of the estimators e(mfxlin) Marginal Effect and Elasticity in Lin Form e(mfxlog) Marginal Effect and Elasticity in Log Form

+------------+ ----+ References +-------------------------------------------------------

Breusch, Trevor & Adrian Pagan (1980) "The Lagrange Multiplier Test and its Applications to Model Specification in Econometrics", Review of Economic Studies 47; 239-253.

Greene, William (2007) "Econometric Analysis", 6th ed., Macmillan Publishing Company Inc., New York, USA..

Han, Chirok & Peter C.B. Phillips (2010) "GMM Estimation for Dynamic Panels with Fixed Effects and Strong at Unity" Econometric Theory, 26; 119–151.

Judge, Georege, R. Carter Hill, William . E. Griffiths, Helmut Lutkepohl, & Tsoung-Chao Lee (1988) "Introduction To The Theory And Practice Of Econometrics", 2nd ed., John Wiley & Sons, Inc., New York, USA.

Judge, Georege, W. E. Griffiths, R. Carter Hill, Helmut Lutkepohl, & Tsoung-Chao Lee(1985) "The Theory and Practice of Econometrics", 2nd ed., John Wiley & Sons, Inc., New York, USA.

+----------+ ----+ Examples +---------------------------------------------------------

clear all

sysuse xtregdhp.dta, clear

db xtregdhp

xtset id t

xtregdhp y x1 x2 , id(id) it(t) mfx(lin) diag lmh predict(Yh) resid(Eu)

xtregdhp y x1 x2 , id(id) it(t) mfx(log) diag lmh predict(Yh) resid(Eu) tolog

xtregdhp y x1 x2 , id(id) it(t) mfx(lin) diag lmh be

xtregdhp y x1 x2 , id(id) it(t) mfx(lin) diag lmh fe

xtregdhp y x1 x2 , id(id) it(t) mfx(lin) diag lmh re -------------------------------------------------------------------------------

. clear all . sysuse xtregdhp.dta, clear . xtregdhp y x1 x2 , id(id) it(t) mfx(lin) diag lmh re

============================================================================== * Han-Philips (2010) Linear Dynamic Panel Data Regression ============================================================================== y = x1 + x2 ------------------------------------------------------------------------------ Sample Size = 42 | Cross Sections Number = 7 Wald Test = 52.9984 | P-Value > Chi2(3) = 0.0000 F-Test = 17.6661 | P-Value > F(3 , 39) = 0.0000 (Buse 1973) R2 = 0.5761 | Raw Moments R2 = 0.9579 (Buse 1973) R2 Adj = 0.5543 | Raw Moments R2 Adj = 0.9558 Root MSE (Sigma) = 14.4009 | Log Likelihood Function = -147.0867 ------------------------------------------------------------------------------ - R2h= 0.4053 R2h Adj= 0.3748 F-Test = 8.63 P-Value > F(3 , 39) 0.0002 - R2v= 0.3197 R2v Adj= 0.2848 F-Test = 5.95 P-Value > F(3 , 39) 0.0019 ------------------------------------------------------------------------------ y | Coef. Std. Err. z P>|z| [95% Conf. Interval] -------------+---------------------------------------------------------------- y | L1. | -.1309041 .2819316 -0.46 0.642 -.6834798 .4216717 | x1 | -.2835875 .0871885 -3.25 0.001 -.4544739 -.1127011 x2 | -1.186583 .3002919 -3.95 0.000 -1.775144 -.5980212 _cons | 71.78851 6.02257 11.92 0.000 59.98449 83.59253 ------------------------------------------------------------------------------

============================================================================== * Panel Model Selection Diagnostic Criteria ==============================================================================

- Log Likelihood Function LLF = -147.0867 - Akaike Final Prediction Error AIC = 302.1734 - Schwartz Criterion SC = 309.7407 - Akaike Information Criterion ln AIC = 4.1754 - Schwarz Criterion ln SC = 4.3298 - Amemiya Prediction Criterion FPE = 75.1008 - Hannan-Quinn Criterion HQ = 68.9898 - Rice Criterion Rice = 66.0459 - Shibata Criterion Shibata = 64.2854 - Craven-Wahba Generalized Cross Validation-GCV = 65.5240 ------------------------------------------------------------------------------

============================================================================== * Panel Groupwise Heteroscedasticity Tests ============================================================================== Ho: Panel Homoscedasticity - Ha: Panel Groupwise Heteroscedasticity

- Lagrange Multiplier LM Test = 8.4465 P-Value > Chi2(6) 0.2072 - Likelihood Ratio LR Test = 38.0427 P-Value > Chi2(6) 0.0000 - Wald Test = 14.7346 P-Value > Chi2(7) 0.0396 ------------------------------------------------------------------------------

* Linear: Marginal Effect - Elasticity *

+-----------------------------------------------------------------------------+ | Variable | Marginal_Effect(B) | Elasticity(Es) | Mean | |--------------+--------------------+--------------------+--------------------| | L.y | -0.1309 | -0.1306 | 35.0262 | | x1 | -0.2836 | -0.3229 | 39.9877 | | x2 | -1.1866 | -0.4879 | 14.4425 | +-----------------------------------------------------------------------------+ Mean of Dependent Variable = 35.1209

+--------+ ----+ Author +-----------------------------------------------------------

Emad Abd Elmessih Shehata Professor (PhD Economics) Agricultural Research Center - Agricultural Economics Research Institute - Eg > ypt Email: emadstat@hotmail.com WebPage: http://emadstat.110mb.com/stata.htm WebPage at IDEAS: http://ideas.repec.org/f/psh494.html WebPage at EconPapers: http://econpapers.repec.org/RAS/psh494.htm

+-------------------+ ----+ XTREGDHP Citation +------------------------------------------------

Shehata, Emad Abd Elmessih (2012) XTREGDHP: "Han-Philips (2010) Linear Dynamic Panel Data Regression"

http://ideas.repec.org/c/boc/bocode/s457456.html

http://econpapers.repec.org/software/bocbocode/s457456.htm

Online Help:

* Econometric Regression Models:

* (1) (OLS) * Ordinary Least Squares Regression Models: olsreg OLS Econometric Ridge & Weighted Regression Models: Stata Module Too > lkit ridgereg OLS Ridge Regression Models gmmreg OLS Generalized Method of Moments (GMM): Ridge & Weighted Regression chowreg OLS Structural Change Regressions and Chow Test --------------------------------------------------------------------------- * (2) (2SLS-IV) * Two-Stage Least Squares & Instrumental Variables Regression M > odels: reg2 2SLS-IV Econometric Ridge & Weighted Regression Models: Stata Module > Toolkit gmmreg2 2SLS-IV Generalized Method of Moments (GMM): Ridge & Weighted Regres > sion limlreg2 Limited-Information Maximum Likelihood (LIML) IV Regression meloreg2 Minimum Expected Loss (MELO) IV Regression ridgereg2 Ridge 2SLS-LIML-GMM-MELO-Fuller-kClass IV Regression ridge2sls Two-Stage Least Squares Ridge Regression ridgegmm Generalized Method of Moments (GMM) IV Ridge Regression ridgeliml Limited-Information Maximum Likelihood (LIML) IV Ridge Regression ridgemelo Minimum Expected Loss (MELO) IV Ridge Regression --------------------------------------------------------------------------- * (3) * Panel Data Regression Models: regxt Panel Data Econometric Ridge & Weighted Regression Models: Stata Mod > ule Toolkit xtregdhp Han-Philips (2010) Linear Dynamic Panel Data Regression xtregam Amemiya Random-Effects Panel Data: Ridge & Weighted Regression xtregbem Between-Effects Panel Data: Ridge & Weighted Regression xtregbn Balestra-Nerlove Random-Effects Panel Data: Ridge & Weighted Regress > ion xtregfem Fixed-Effects Panel Data: Ridge & Weighted Regression xtregmle Trevor Breusch MLE Random-Effects Panel Data: Ridge & Weighted Regre > ssion xtregrem Fuller-Battese GLS Random-Effects Panel Data: Ridge & Weighted Regre > ssion xtregsam Swamy-Arora Random-Effects Panel Data: Ridge & Weighted Regression xtregwem Within-Effects Panel Data: Ridge & Weighted Regression xtregwhm Wallace-Hussain Random-Effects Panel Data: Ridge & Weighted Regressi > on xtreghet MLE Random-Effects Multiplicative Heteroscedasticity Panel Data Regr > ession --------------------------------------------------------------------------- * (4) (MLE) * Maximum Likelihood Estimation Regression Models: mlereg MLE Econometric Regression Models: Stata Module Toolkit mleregn MLE Normal Regression mleregln MLE Log Normal Regression mlereghn MLE Half Normal Regression mlerege MLE Exponential Regression mleregle MLE Log Exponential Regression mleregg MLE Gamma Regression mlereglg MLE Log Gamma Regression mlereggg MLE Generalized Gamma Regression mlereglgg MLE Log Generalized Gamma Regression mleregb MLE Beta Regression mleregev MLE Extreme Value Regression mleregw MLE Weibull Regression mlereglw MLE Log Weibull Regression mleregilg MLE Inverse Log Gauss Regression --------------------------------------------------------------------------- * (5) * Autocorrelation Regression Models: autoreg Autoregressive Least Squares Regression Models: Stata Module Toolkit alsmle Beach-Mackinnon AR(1) Autoregressive Maximum Likelihood Estimation R > egression automle Beach-Mackinnon AR(1) Autoregressive Maximum Likelihood Estimation R > egression autopagan Pagan AR(p) Conditional Autoregressive Least Squares Regression autoyw Yule-Walker AR(p) Unconditional Autoregressive Least Squares Regress > ion autopw Prais-Winsten AR(p) Autoregressive Least Squares Regression autoco Cochrane-Orcutt AR(p) Autoregressive Least Squares Regression autofair Fair AR(1) Autoregressive Least Squares Regression --------------------------------------------------------------------------- * (6) * Heteroscedasticity Regression Models: hetdep MLE Dependent Variable Heteroscedasticity hetmult MLE Multiplicative Heteroscedasticity Regression hetstd MLE Standard Deviation Heteroscedasticity Regression hetvar MLE Variance Deviation Heteroscedasticity Regression glsreg Generalized Least Squares Regression --------------------------------------------------------------------------- * (7) * Non Normality Regression Models: robgme MLE Robust Generalized Multivariate Error t Distribution bcchreg Classical Box-Cox Multiplicative Heteroscedasticity Regression bccreg Classical Box-Cox Regression bcereg Extended Box-Cox Regression --------------------------------------------------------------------------- * (8) (NLS) * Nonlinear Least Squares Regression Regression Models: autonls Non Linear Autoregressive Least Squares Regression qregnls Non Linear Quantile Regression --------------------------------------------------------------------------- * (9) * Logit Regression Models: logithetm Logit Multiplicative Heteroscedasticity Regression mnlogit Multinomial Logit Regression --------------------------------------------------------------------------- * (10) * Probit Regression Models: probithetm Probit Multiplicative Heteroscedasticity Regression mnprobit Multinomial Probit Regression --------------------------------------------------------------------------- * (11) * Tobit Regression Models: tobithetm Tobit Multiplicative Heteroscedasticity Regression ---------------------------------------------------------------------------

Panel Data Tests:

* (1) * Autocorrelation Tests: lmaxt Panel Data Autocorrelation Tests lmabxt Panel Data Autocorrelation Baltagi Test lmabgxt Panel Data Autocorrelation Breusch-Godfrey Test lmabpxt Panel Data Autocorrelation Box-Pierce Test lmabpgxt Panel Data Autocorrelation Breusch-Pagan-Godfrey Test lmadurhxt Panel Data Autocorrelation Dynamic Durbin h and Harvey LM Tests lmadurmxt Panel Data Autocorrelation Dynamic Durbin m Test lmadwxt Panel Data Autocorrelation Durbin-Watson Test lmavonxt Panel Data Von Neumann Ratio Autocorrelation Test lmawxt Panel Data Autocorrelation Wooldridge Test lmazxt Panel Data Autocorrelation Z Test --------------------------------------------------------------------------- * (2) * Heteroscedasticity Tests: lmhxt Panel Data Heteroscedasticity Tests lmhgwxt Panel Data Groupwise Heteroscedasticity Tests ghxt Panel Groupwise Heteroscedasticity Tests lmhlmxt Panel Data Groupwise Heteroscedasticity Breusch-Pagan LM Test lmhlrxt Panel Data Groupwise Heteroscedasticity Greene LR Test lmharchxt Panel Data Heteroscedasticity Engle (ARCH) Test lmhcwxt Panel Data Heteroscedasticity Cook-Weisberg Test lmhglxt Panel Data Heteroscedasticity Glejser Test lmhharvxt Panel Data Heteroscedasticity Harvey Test lmhhpxt Panel Data Heteroscedasticity Hall-Pagan Test lmhmssxt Panel Data Heteroscedasticity Machado-Santos-Silva Test lmhwaldxt Panel Data Heteroscedasticity Wald Test lmhwhitext Panel Data Heteroscedasticity White Test --------------------------------------------------------------------------- * (3) * Non Normality Tests: lmnxt Panel Data Non Normality Tests lmnadxt Panel Data Non Normality Anderson-Darling Test lmndhxt Panel Data Non Normality Doornik-Hansen Test lmndpxt Panel Data Non Normality D'Agostino-Pearson Test lmngryxt Panel Data Non Normality Geary Runs Test lmnjbxt Panel Data Non Normality Jarque-Bera Test lmnwhitext Panel Data Non Normality White Test --------------------------------------------------------------------------- * (4) * Panel Data Error Component Tests: lmecxt Panel Data Error Component Tests --------------------------------------------------------------------------- * (5) * Panel Data Diagonal Covariance Matrix Test: lmcovxt Panel Data Breusch-Pagan Diagonal Covariance Matrix LM Test --------------------------------------------------------------------------- * (6) * Panel Data ModeL Selection Diagnostic Criteria: diagxt Panel Data ModeL Selection Diagnostic Criteria --------------------------------------------------------------------------- * (7) * Panel Data Specification Tests: lmhausxt Panel Data Hausman Specification Test resetxt Panel Data REgression Specification Error Tests (RESET) --------------------------------------------------------------------------- * (8) * Panel Data Identification Variables: idt Create Identification Variables in Panel Data xtidt Create Identification Variables in Panel Data ---------------------------------------------------------------------------