Re: [R] plotCI -- multiple plots on same graph

2008-09-12 Thread bioinformatics_guy
Thank you all for the help! I had a friend look at it and basically what he did was do an initial plot() of the line (which was all the mean values) and then use ylower and yupper to plot 2 addition line() which he set lyt=3 to so they would look like points. I know its a dirty hack but it worke

Re: [R] plotCI -- multiple plots on same graph

2008-09-12 Thread hadley wickham
> I have a bunch of lines I want to plot using plotCI() > > What Id like to know is, how can I connect the points with a line and how > can I print multiple lines on the same graph? You might want to have a look at ggplot2, e.g. http://had.co.nz/ggplot2/geom_errorbar.html, for an alternative way t

Re: [R] plotCI -- multiple plots on same graph

2008-09-12 Thread Jim Lemon
bioinformatics_guy wrote: I have a bunch of lines I want to plot using plotCI() What Id like to know is, how can I connect the points with a line and how can I print multiple lines on the same graph? At the moment, plotCI doesn't accept a type="b" argument. I'll see if I can fix it. You migh

Re: [R] plotCI -- multiple plots on same graph

2008-09-11 Thread brandon
1) Look into plotmeans(), a wrapper function for plotCIit may be more appropriate for what you're looking for and one of the default options is to connect the points with lines. Otherwise you'll have to do a separate call to lines() after each plotCI() call. 2) To put multiple data sets on the

[R] plotCI -- multiple plots on same graph

2008-09-11 Thread bioinformatics_guy
I have a bunch of lines I want to plot using plotCI() What Id like to know is, how can I connect the points with a line and how can I print multiple lines on the same graph? -- View this message in context: http://www.nabble.com/plotCImultiple-plots-on-same-graph-tp19435198p19435198.html Se