Re: [R] SOLVED plotting multiple CIs

2010-04-30 Thread Ista Zahn
Glad you got it working! By "true value" do you mean the means? If so: 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", colour = "blue", geom = "errorb

Re: [R] SOLVED plotting multiple CIs

2010-04-30 Thread Giovanni Azua
Hello, After installing gfortran from http://r.research.att.com/gfortran-4.2.3.dmg it finally works! see below. Thank you all. @Ista Zahn: Looks fantastic! :) thank you so much! ... is there a way to have a small circle on the true value? Best regards, Giovanni > install.packages("Hmisc", d