?=================================================================== ? Template for estimating the mover stayer model. = ? = ? = ? = ? User must define the data matrices with the following lines: = ? = ? NAMELIST ; X0 = ... $ = ? NAMELIST ; X1 = ... $ = ? = ? User's dependent variable is Y. Change the following line = ? = ? CREATE ; Y = the dependent variable $ = ? = ? User must define the PROBIT data matrix with the following line: = ? = ? NAMELIST ; Z = ... $ = ? = ? User's PROBIT dependent variable is D. Change is line: = ? = ? CREATE ; D = the dependent variable $ = ?=================================================================== PROBIT ; LHS = D ; RHS = Z ; HOLD $ SELECT ; LHS = Y ; RHS = X1 $ MATRIX ; Beta1 = BSR1 $ SELECT ; LHS = Y ; RHS = X0 ; LIMITS = 1 $ MATRIX ; Beta0 = BSR0 $ SELECT ; LHS = Y ; RH1 = X1 ; RH2 = X0 ; MLE ; ALL ; Start = Beta1,Beta0 $