找回密码
 立即注册
搜索

动态面板门槛模型及stata操作:xthenreg

一丰笔记 2022-7-4 10:15 1332人围观 SEO/SEM

# SEO/SEM

来源:参考自Estimation of Dynamic Panel Threshold Model using Stata,作者:Myung Hwan Seo, Sueyoul Kim, and Young-Joo Kim


Hansen(2000)将“门槛回归”模型的基本形式定义为:


其中,作为解释变量的xi是一个m维的列向量。qi被称为“门槛变量”, Hansen(2000)认为门槛变量既可以是解释変量xi中的一个回归元,也可以作为一个独立的门槛变量。


而面板门槛模型已经广泛应用到实证研究中,2015年开发出来的xthreg命令可以进行hansen所提出的门槛回归模型。


Hansen's(1999)模型是静态的另外固定效应回归 估计要求协变量是强外生变量,估计值是一致的。——然而,在许多实际应用程序中,强外生性可能具有限制性。因此,Seo and Shin (2016)将 该模型扩展到动态面板模型。


假设如下一个动态面板门槛模型:



xit可能包含滞后因变量,即xit为Y的滞后期,qit是门槛变量。


1


语法格式


动态面板门槛模型命令为xthenreg,语法格式为:


xthenreg depvar [varlist (q x1 x2 ...)] [if] [in] [, options]


其中depvar是因变量,而indepvars是解释变量变量。


使用该命令前需要注意:


1. xtset应该在运行之前完成。此外,变量必须为事先按(i)面板变量和(ii)时间变量排序。(xtset should be done before running this. Moreover variables must be sorted by (i) panel variable and (ii) time variable beforehand.)


2. 需要强平衡的面板数据(Strongly balanced panel data is required.)


3.Inputs 应该 把 y q x1 x2 …… , 其q为门槛变量, x1 和 x2这些称为解释变量(Inputs should be put as y q x1 x2 …… , where q is the threshold variable and x1 x2 ……are other independent variables.)


4. moremata library is required since this command use mm quantile func-


tion.


5. When there are endogeneous independent variables, endogenous option


should be set. For example, if x1 is exogeneous and x2 is endogeneous,


the input must be y q x1, endo(x2).


2


option选项介绍






endogenous(varlist) species endogeneous independent variables. The endogeneous variables must be excluded from the list of independent variables before the comma.


inst(varlist) species the list of additional instrumental variables.


staticsets the model static. The default model is dynamic. In contrast


with dynamic model, static model does not automatically include L.y as inde-


pendent variable.


kink sets the model kink.


grid _ num(integer)determines the number of grid points to estimate the thresh-


old . The default is 20.


trim _ rate(real)determines the trim rate when constructing a grid for es-


timating r. The default is 0.4.


h_0(real)determines a parameter for Silverman's rule of thumb used to ker-


nel estimation. The default is 1.5.


boost(integer) The number of bootstrapping for linearity test. The default


is 0.


3


案例应用介绍


我们应用我们的方法来评估肥胖对工人生产力的影响。肥胖是用体重指数(BMI)来衡量的,体重(公斤)除以身高(米)的平方。BMI在25到30之间的人被认为超重,BMI在30或更高的人被视为肥胖。


使用数据来自British Cohort Study,我们研究了BMI与工作时间的关系。更多的详细讨论见Kim(2019)。


加载数据后,首先需要声明数据是panel。xthenreg的默认模型是一个动态模型。因为我们认为是静态的模型,而不是动态模型,我们使用静态选项。


案例1::


usehour, clearxtset ilabel timexthenreg hourbmi hsize, endo(bmi) inst(bweight bmic bmim bmid hsize) kink static

结果为:



In this example, we can obtain the same results by collecting all exogenous variables into one place with exo option as follows.


xthenreg hour bmi, endo(bmi) exo(hsize) inst(bweight > bmic bmim bmid) kink static

We can also change the set of included and excluded instruments using the inst option. The number of moment conditions varies accordingly.


xthenreg hour bmi hsize, endo(bmi) inst(bweight bmic bmim bmid) kink static


We can estimate the model with a restriction on the sample.


xthenreg hour bmi ifregion== 1, endo(bmi) exo(hsize) inst(bweight bmic bmim bmid) kink static


Next we consider discontinuity in BMI eect without imposing a kink in the model.



By taking rst difference, we obtain the following model and estimate it with only static option.



xthenreg hour bmi, endo(bmi) exo(hsize) inst(bweight bmic bmim bmid) static


3


References


[1] Adam, C. S., and Bevan, D. L. (2005). Fiscal decits and growth in developing countries," Journal of Public Economics, 89(4), 571-597.


[2] Giacomini, R., Politis, D. N., & White, H. (2013). A warp-speed method for conducting Monte Carlo experiments involving bootstrap estimators,"Econometric theory, 29(3), 567-589.


[3] Hansen, B. E. (1999). Threshold eects in non-dynamic panels: Estimation,testing, and inference," Journal of econometrics, 93(2), 345-368.


[4] Hidalgo, J., Lee, J., and M.H. Seo (2019). Robust Inference for Threshold Regression Models," Journal of Econometrics, to appear.


[5] Khan, M. S., and Ssnhadji, A. S. (2001). Threshold eects in the relationship between ination and growth," IMF Sta papers, 48(1), 1-21.


[6] Kim, Y-J. (2019). The eect of weight on work hours," working paper.


[7] Seo, M. and Y. Shin (2016). Dynamic panels with threshold eect and endogeneity," Journal of Econometrics, 195: 169-186.


[8] Wang, Q. (2015). Fixed-eect panel threshold model using Stata," The Stata Journal, 15(1), 121-134.


[9] Zhang, Y., Zhou, Q., and Jiang, L. (2017). Panel kink regression with an unknown threshold," Economics Letters, 157, 116-121.



本文来源【计量经济学服务中心】版权归原作者所有
相关推荐