Re: [R] add my own calculated conficence interval to a plot

2011-03-28 Thread Peter Ehlers
On 2011-03-28 13:08, Henrique Dallazuanna wrote: Try this: matplot(DF[,c('SexRatio', 'lower', 'upper')], type ='b', pch = 19, col = c(2, 1, 1)) Or you could have a look at plotCI() in the gplots package. (There's also a plotCI() in the plotrix package.) Peter Ehlers On Mon, Mar 28, 2011 a

Re: [R] add my own calculated conficence interval to a plot

2011-03-28 Thread Henrique Dallazuanna
Try this: matplot(DF[,c('SexRatio', 'lower', 'upper')], type ='b', pch = 19, col = c(2, 1, 1)) On Mon, Mar 28, 2011 at 4:25 PM, Simone Santoro wrote: > > Hi, > > I have a data frame like this: > var1=years > var2=Sex ratio (0 var3=lower 95% confidence interval > var4=upper 95% confidence interv

[R] add my own calculated conficence interval to a plot

2011-03-28 Thread Simone Santoro
Hi, I have a data frame like this: var1=years var2=Sex ratio (0https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.