[R] plotting command trouble

2007-04-19 Thread Schmitt, Corinna
Dear R-Experts, I have the following command lines: windows() plot(0:60, 0:0.896, type=n, xlab=Zeit [min], ylab=Absorptionsmessung bei 600nm,main=Zellwandstabilität ) dev.off() Can anyone say me why the plot command does not work and how the correct one should look like? Important is:

Re: [R] plotting command trouble

2007-04-19 Thread Chuck Cleland
Schmitt, Corinna wrote: Dear R-Experts, I have the following command lines: windows() plot(0:60, 0:0.896, type=n, xlab=Zeit [min], ylab=Absorptionsmessung bei 600nm,main=Zellwandstabilität ) dev.off() Can anyone say me why the plot command does not work and how the correct

Re: [R] plotting command trouble

2007-04-19 Thread Henrique Dallazuanna
Hi, the length of the coordinates are different. Try: plot(seq(0,60, l=100), seq(0,0.896, l=100), type=n, xlab=Zeit [min], ylab=Absorptionsmessung bei 600nm,main=Zellwandstabilität ) -- Henrique Dallazuanna Curitiba-Paraná-Brasil 25° 25' 40 S 49° 16' 22

Re: [R] plotting command trouble

2007-04-19 Thread Schmitt, Corinna
I know, but it is needed. Any other idea? Corinna Von: Henrique Dallazuanna [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 19. April 2007 14:08 An: Schmitt, Corinna Cc: r-help@stat.math.ethz.ch Betreff: Re: [R] plotting command trouble Hi

Re: [R] plotting command trouble

2007-04-19 Thread Philipp Pagel
On Thu, Apr 19, 2007 at 02:10:37PM +0200, Schmitt, Corinna wrote: Hi, the length of the coordinates are different. Try: plot(seq(0,60, l=100), seq(0,0.896, l=100), type=n, xlab=Zeit [min], ylab=Absorptionsmessung bei 600nm,main=Zellwandstabilit?t ) I know, but it is needed. Any

Re: [R] plotting command trouble

2007-04-19 Thread Schmitt, Corinna
Thanks. I will try it. Perhaps it works. Corinna -Ursprüngliche Nachricht- Von: Jim Lemon [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 19. April 2007 15:16 An: Schmitt, Corinna Betreff: Re: [R] plotting command trouble Schmitt, Corinna wrote: I know, but it is needed. Any other