Re: [R] Plotting Help

2010-05-08 Thread Jim Lemon
On 05/09/2010 07:10 AM, Ravi Ramaswamy wrote: Hi - Wondering if someone could help me with a plotting problem. I looked through the postings for this error message but the explanations are hard to follow. Basically I have matrix of 80 rows and 101 columns. I would like to generated a line grap

[R] Plotting Help

2010-05-08 Thread Ravi Ramaswamy
Hi - Wondering if someone could help me with a plotting problem. I looked through the postings for this error message but the explanations are hard to follow. Basically I have matrix of 80 rows and 101 columns. I would like to generated a line graph that has 80 plots, one for each row, with the

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, > >

Re: [R] plotting help request II

2008-01-08 Thread Greg Snow
day, January 08, 2008 1:35 PM > To: [EMAIL PROTECTED] > Subject: [R] plotting help request II > > Dear all, > > meanwhile i found out how to handle the coordinate thing and > plot the lines like i like. > the remaining problem is, i need something like names.arg >

[R] plotting help request II

2008-01-08 Thread bunny , lautloscrew.com
Dear all, meanwhile i found out how to handle the coordinate thing and plot the lines like i like. the remaining problem is, i need something like names.arg does in barplot for my plot. my plot connects several dots with several lines. and now i like characters as the names of the intersect

[R] plotting help needed

2008-01-08 Thread bunny , lautloscrew.com
Dear all, i need some help with plotting. the specific problem is the following: #FYI a=100 b=95 d=94.5 e=70 all=c(a,b) all2=c(d,e) plot(all,type="b",col="blue",xlim=c(1,4),ylim=c(20,150)) lines(all2,type="o",col="yellow") this does work so far, but ... i´d like to have 4 intersects, just nam