search for: mydotchart

Displaying 1 result from an estimated 1 matches for "mydotchart".

Did you mean: dotchart
2007 Jan 15
0
How can I generate line segments between two sets of points on the same graph?
I am drawing two plots on the same graphics device window as follows: yLim<-range(range(template),range(slope*subSeries) ) plot( template, type="p", pch=19,cex=1.75,lwd=2.5,lty=1, ann=F, axes=F,frame.plot=T,col="red", ylim=yLim,new=T ) title( main = "myDotChart of original template and subSeries vs time" );points( slope*subSeries, type="p", pch=15,cex=1.35,lty=2,lwd=2.5, col="blue", ann=F ) I want to connect the two corresponding points at the same x-coordinate ( x-axes is shared by both plots essentially). I want to connect th...