When creating a plot using gplots.plotmeans
, the axis labels are not set to what I want, but to "means" and "Index".
Here is the code:
library(gplots)
plotmeans(ioe.dimension ~ ioe$profile,
col=3,
xlab="Profile", ylab="Means",
ylim=c(2.5,6.5),
bars=FALSE)
abline(h=4, lty=2, col=2)
This happens for some reason when
bars = FALSE
. I don't know why, but for me it works to first remove the labels withann = F
and then add them with a call totitle()
.