Thanks Kingsford... that does the trick perfectly!
Simon
--
View this message in context:
http://www.nabble.com/How-to-display-y-axis-labels-in-Multcomp-plot-tp20904977p20919920.html
Sent from the R help mailing list archive at Nabble.com.
__
R-help@
See ?par and note the 'mar' parameter
Here's an example:
library(multcomp)
labs <- c('short', 'medium', 'long')
treatment <- gl(3, 10, labels = labs)
response <- rnorm(30, mean=as.numeric(treatment))
mult <- glht(lm(response ~ treatment),
linfct=mcp(treatment='Means'))
par(mar=c(
2 matches
Mail list logo