Skip to content
Prev 96644 / 398500 Next

Multcomp

-----Original Message-----
From: Gabor Grothendieck [mailto:ggrothendieck at gmail.com] 
Sent: Saturday, July 22, 2006 1:37 PM
To: Nair, Murlidharan T
Cc: R-help at stat.math.ethz.ch
Subject: Re: [R] Multcomp
On 7/22/06, Nair, Murlidharan T <mnair at iusb.edu> wrote:
file saved as fungi.txt
data=fungus,conf.level=0.95,type =c("Tukey"))  # Computes cimultaneous
intervals using Tukey's method
of the data since it clutters the graph.
Don't understand what "part of the data" means.  Use data =
fungus[1:10,]
in the simint call to just process the first 10 data rows.  To
eliminate a portion of
the plot note in ?plot.hmtest that there is a ... argument and its
description
is that its passed to plot which in turn passes them to plot.default so
you
could use ylim = 1:2, say, to show only part of the plot vertically.
the >>comparisons in one graph and another subset in another and so
on....
on >>it.
# after your plot statement:
pp <- locator()
# now click on a spot on the plot
# and then right click and choose stop
text(pp$x, pp$y, "some text")
labels are HabitatBirch-HabitatOak, I want it to be labeled as
Birch-Oak.

# change rownames of the estimates which has the effect
# of changing the y axis labels
rownames(fungus.cirec$estimate) <- LETTERS[1:3]
plot(fungus.cirec)
name >>"Habitat" in this case and out put the label as Birch-Oak. 

Thanks ../Murli