<div>Hi,</div>
<div> </div>
<div>I&#39;ve recently started using R to do regressions, using the &#39;lmer&#39; function.  I am currently re-running some analyses that originally had treatment coding, so that they now have contrast coding.  My question is about how to interpret contrast coded regression outputs.  <br>
 <br>One of my independent variables (<font face="tahoma,sans-serif">nativeLanguage) has 3 levels: English, Chinese, and Korean.  As this experiment was conducted in English, participants in the English group were native speakers, and participants in the other two groups were non-native speakers.  In my original treatment-coded analysis, English was the reference level.  My output for e.g. &#39;langCompare.lmer = lmer(duration~nativeLanguage+(1|Subject), data=myData)&#39; had lines like:</font></div>

<div><br><font face="tahoma,sans-serif">                                                 Estimate Std. Error t value</font><br>nativeLanguageChinese              0.025920   0.002384  10.872</div>
<div>nativeLanguageKorean                -0.004416   0.002091  -2.112</div>
<div> </div>
<div>As I understood it, such lines gave information about the comparison between Chinese and English, and between Korean and English, respectively.  </div>
<div> </div>
<div>I contrast coded this variable with the code: &#39;contrasts(myData$nativeLanguage) = c(-1, .5, .5)&#39; (after ordering the levels: English, Chinese, Korean).  This was in order to compare the native (English) group to the non-native (Chinese and Korean) groups.  After this contrast coding, my output had lines like:</div>

<div> </div>
<div>                                        Estimate Std. Error t value<br>nativeLanguage1               0.10002   0.010113  11.242 
<div>nativeLanguage2              -0.00046   0.639887  1.388</div>
<div> </div>
<div>I was wondering how to interpret this output.  My guess is that nativeLanguage1 is the comparison between the native and non-native groups, and native_language2 is the comparison between Chinese and Korean, but I haven&#39;t been able to find any resources to confirm this.  </div>

<div> </div>
<div>I would greatly appreciate any advice on how to interpret regressions after contrast coding, or pointers to appropriate resources on this topic!</div>
<div> </div>
<div>Thanks very much,</div>
<div>Rachel </div></div>