On Nov 13, 2011, at 7:22 PM, Giovanni Azua wrote:

Hello,

When I try to use TukeyHSD in the following way it shows the confidence interval corresponding to the last factor only.

throughput.aov <- aov(Throughput~No_databases+Partitioning +No_middlewares+Queue_size,data=throughput)

plot(TukeyHSD(throughput.aov)) # I expected here to see the confidence intervals for all factors but see only the last.

OTOH this one works but then it is unreadable due to the long labels of combined effects in the Y-axis ticks.

throughput.aov <- aov(Throughput~,data=throughput)

"If thine name offend thee, pluck it out."

names(throughput) [c("No_databases","Partitioning","No_middlewares","Queue_size")] <-
                  c("N_db","part","N_midw","Qu_sz")

--

David Winsemius, MD
West Hartford, CT

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to