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 idea? > Hi Corinna, When you display a scatterplot, each X value must have a corresponding Y value. Otherwise where do you put the point? I think you may mean that you need 61 X values upon which you can plot 61 Y values. If you just want a sequence from 0 to 0.896 with 61 values: seq(0,0.896,length=61) This will plot with 0:60 as X values, or you can just use: plot(seq(0,0.896,length=61)) Jim ______________________________________________ [email protected] 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.
