Re: [R] plotting help needed

2008-01-10 Thread Don MacQueen
Try plot(1:2,all,type="b",col="blue",xlim=c(1,4),ylim=c(20,150),xaxt='n',yaxt='n') lines(2:3,all2,type='o',col='yellow') I don't really know what you mean by "4 intersects, just named by characters". By "no scale please" I assume you mean tick marks and tick mark labels on the axes, and that's

Re: [R] plotting help needed

2008-01-09 Thread bartjoosen
maybe this is what you want: plot(all~c(1:2),type="b",col="blue",xlim=c(1,4),ylim=c(20,150),pch=c("a","b"),yaxt="none") lines(all2~c(2:3),type="o",col="yellow",pch=c("d","e")) for some manuals, look at the contributed documents section at the R homepage Bart ran2 wrote: > > Dear all, > >