Re: [R] plotting multiple CIs

2010-05-01 Thread Jim Lemon
On 05/01/2010 12:10 AM, Giovanni Azua wrote: Hello, I need to plot multiple confidence intervals for the same model parameter e.g. so for the same value of the parameter in point x_1 I would like to see four different confidence intervals so that I can compare the accuracy e.g. boot basic vs

Re: [R] plotting multiple CIs

2010-04-30 Thread Giovanni Azua
Hello David, On Apr 30, 2010, at 6:00 PM, David Winsemius wrote: > Looks like you do not have the RTools bundle and perhaps not the XCode > framework either? > > I am not suggesting that you do so, since it appears you are not conversant > with compiling source code packages. If I am wrong abo

Re: [R] plotting multiple CIs

2010-04-30 Thread Giovanni Azua
Hello Zahn, On Apr 30, 2010, at 4:35 PM, Ista Zahn wrote: > Hi Giovanni, > I think the ggplot2 package might help you out here. Do you want > something like this? Thank you for your suggestion however I could not give it a try since landed in the same issue being reported about the Hmisc packag

Re: [R] plotting multiple CIs

2010-04-30 Thread Ista Zahn
Hi Giovanni, I think the ggplot2 package might help you out here. Do you want something like this? library(ggplot2) data(mtcars) p <- ggplot(mtcars, aes(x=cyl, y=mpg)) p + stat_summary(fun.data = "mean_cl_boot", colour = "red", geom = "errorbar") + stat_summary(fun.data = "mean_cl_normal", colo

[R] plotting multiple CIs

2010-04-30 Thread Giovanni Azua
Hello, I need to plot multiple confidence intervals for the same model parameter e.g. so for the same value of the parameter in point x_1 I would like to see four different confidence intervals so that I can compare the accuracy e.g. boot basic vs normal vs my own vs classic lm CI etc. I li