Caros colegas,
Estou realizando um exercício de parcela subdividida utilizando a função lme{nlme}. Acontece que quando rodo a função summary.glht as comparações pairwise são feitas e eu recebo as seguintes mensagens warnings:
Warning messages:
1: In RET$pfunction("adjusted", ...) : Completion with error > abseps
2: In RET$pfunction("adjusted", ...) : Completion with error > abseps
3: In RET$pfunction("adjusted", ...) : Completion with error > abseps
4: In RET$pfunction("adjusted", ...) : Completion with error > abseps
Essas mensagens no entanto não aparecem quando defino outro teste na função summary.glht
summary.glht(compara, test=adjusted("fdr"))
Porque isso ocorre?
Segue o CMR.
att
#install.packages(c("nlme","multcomp"))
library(nlme)
library(multcomp)
PARCSUB<-read.csv("https://www.dropbox.com/s/y8qmhwau0i8euva/ExemploSub.csv?raw=1",head=TRUE)
PARCSUB<-transform(PARCSUB,PARCELA=factor(PARCELA),BLOCO=factor(BLOCO),PASTO=factor(PASTO),MINERAL=factor(MINERAL))
modeloPARSUBlme<-lme(PRODLEIT~BLOCO+PASTO*MINERAL,random=~1|PARCELA,data=PARCSUB)
compara<- glht(modeloPARSUBlme, linfct=mcp(PASTO="Tukey"))