Zhou Xun and Michel Lubrano, "Simulation Estimation of Two-Tiered Dynamic Panel Tobit Models with an Application to the Labor Supply of Married Women: A Comment", Journal of Applied Econometrics, Vol. 31, No. 4, 2016, pp. 756-761. This paper is a replication of and a comment on Sheng-Kai Chang, "Simulation Estimation of Two-Tiered Dynamic Panel Tobit Models with an Application to the Labor Supply of Married Women", Journal of Applied Econometrics, Vol. 26, No. 5, 2011, pp. 854-871. The data are available at http://qed.econ.queensu.ca/jae/2011-v26.5/chang/ The sample contains observations for 1,627 women continuously married between 1984 and 1992, and aged between 19 and 60 in 1985. All data are in the file wh8492d.txt, which is an ASCII file in DOS format. It is zipped in the file skc-data.zip. Unix/Linux users should use "unzip -a". The file wh8492d.txt contains the following variables: hr83-hr92: annual working hours for wife for 1983-1992 race: wife's ethnicity (Black=2, White=1) age84-age92: wife's age for 1984-1992 hinc83-hinc92: husband's annual income for 1983-1992 winc83-winc92: wife's annual income for 1983-1992 wedu: wife's education hedu: husband's education c1284-c1292: number of children less or equal 2 years old for 1984-1992 c3584-c3592: number of children between 3 and 5 years old for 1984-1992 c61384-c61392: number of children between 6 and 13 years old for 1984-1992 The data can be read using the following R code rm(list=ls(all=TRUE)) data = read.table(file="wh8492d.txt", header = TRUE, sep = "") attach(data)