I did 5x2 cross validation experiments and, after that, I did the Tukey-HSD pairwise comparison comparing the 10 accuracy of 5 techniques pairwise as shown below.
The graphic above was yielded after the following R commands:
data <- read.table("experimento-geral.txt", head=TRUE, sep=",", dec=".");
data$metodo <- factor(data$metodo);
summary(data$acuracia)
aov.data <- aov(data$acuracia ~ data$metodo, data=data)
anova(aov.data)
tky <- TukeyHSD(aov.data, "data$metodo");
png("pertubacao-metodo.png",width=320,height=480)
plot(tky)
What I want to know is why a pair of techniques in this graph is represented by just one confidence interval.
What I know is that one technique can be represented with one confidence interval. Why in the graphic one confidence interval is representing a couple of techniques? is this the subtraction of the two confidence intervals?