# suest2 **Repository Path**: dingxiuhao/suest2 ## Basic Information - **Project Name**: suest2 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 4 - **Created**: 2020-03-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # suest2: Seemingly unrelated estimation with support for Panel data models Type `ssc install suest, replace` to download the ado file. It will be saved as **D:\stata15\ado\plus\suest.ado**. You can open the adofile and rename it as **suest2.ado**. ```stata . webuse nlswork.dta, clear . xtset idcode year . xtreg ln_wage hours i.year if union==1, fe . est store m1 . xtreg ln_wage hours i.year if union==0, fe . est store m0 . suest2 m1 m0 . test [m1_mean]hours=[m0_mean]hours ```