Re: [R] Change Confidence Limits on a plot

2008-11-14 Thread Robin Clark
Thanks Gavin and Dieter, I think I've now got the plot working through using the level argument as follows: plot(confint(mult,level = sig) , main=NA, xlab=unlist(strsplit(Args[4],"~"))[1]) -- View this message in context: http://www.nabble.com/Change-Confidence-Limits-on-a-plot-tp20503927p2

Re: [R] Change Confidence Limits on a plot

2008-11-14 Thread Gavin Simpson
On Fri, 2008-11-14 at 08:35 -0800, Robin Clark wrote: > Hi, > I am attempting to set the confidence limits on a ls means plot as follows: > > mult<-glht(lm(effectModel, data=statdata, na.action = na.omit), > linfct=mcp(mainEffect="Means")) > meanPlot <- sub(".html", "meanplot.jpg", htm

[R] Change Confidence Limits on a plot

2008-11-14 Thread Robin Clark
Hi, I am attempting to set the confidence limits on a ls means plot as follows: mult<-glht(lm(effectModel, data=statdata, na.action = na.omit), linfct=mcp(mainEffect="Means")) meanPlot <- sub(".html", "meanplot.jpg", htmlFile) jpeg(meanPlot) plot(mult, main=NA, xl

Re: [R] Change Confidence Limits on a plot

2008-11-14 Thread Dieter Menne
Robin Clark wrote: > > > mult<-glht(lm(effectModel, data=statdata, na.action = na.omit), > linfct=mcp(mainEffect="Means")) > meanPlot <- sub(".html", "meanplot.jpg", htmlFile) > jpeg(meanPlot) > > plot(mult, main=NA, xlab=unlist(strsplit(Args[4],"~"))[1]) > > This pr