search for: affgroup

Displaying 1 result from an estimated 1 matches for "affgroup".

Did you mean: offgroup
2013 May 06
0
Comparaciones multiples lmer
...http://www.ats.ucla.edu/stat/r/faq/testing_contrasts.htm # http://thebiobucket.blogspot.com.es/2011/06/glmm-with-custom-multiple-comparisons.html#more # Un Factor summary(glht(model= m1,linfct=mcp( group = "Tukey") ), test = adjusted(type = "bonferroni")) # Dos factores datos$AffGroup <- interaction(datos$Affix, datos$group) m2 <- lmer( LogRT ~ AffGroup + (1|Subject), data= datos) pamer.fnc(m2) summary(glht(model= m2,linfct=mcp( AffGroup = "Tukey") ), test = adjusted(type = "bonferroni")) #-------------------------------------- # C) SoluciĆ³n paper #...