Skip to content
Prev 10500 / 20628 Next

Help with mixed models function

Cody,

the mcp function from the multcomp package expects a named argument list, not an array of strings: 

 iv        <- c('a','b','c')
 linfcts   <- eval(parse(text=paste("mcp(",paste(iv,'= "Tukey" ',collapse=','),')')));
 pairwise2 <- summary(glht(owobanova , linfct = linfcts));
 
Hugo 


On Tue, 13 Aug 2013 16:01:43 -0400
"Cody Likavec" <codylikavec at gmail.com> wrote:

            
--