Skip to content
Back to formatted view

Raw Message

Message-ID: <4EF71FA0-4808-4A00-BFB5-CB051EEB9F5F@gmail.com>
Date: 2011-11-14T00:22:47Z
From: Giovanni Azua
Subject: issue plotting TukeyHSD

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~No_databases*Partitioning*No_middlewares*Queue_size,data=throughput)

TIA,
Best regards,
Giovanni