On 10/12/2009 08:47 PM, carol white wrote:
one example is to plot two vectors against each other and then, to plot the CI 
(confidence interval) of each point on the same graphics. The first could be 
done by plot and the second by plotCI in gplots package but how to plot on the 
same R graphic device?
Hi Carol,
I would:

plot(<the first vector>)
dispersion(<for the first vector>)
points(<the second vector>)
dispersion(<for the second vector>)

There are a number of other functions to display CIs.

Jim

______________________________________________
R-help@r-project.org mailing list
https://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.

Reply via email to