Re: [R] many curves to the same plot

2012-03-26 Thread Alaios
Thanks a lot :) That helped ! Alex From: R. Michael Weylandt Cc: R help Sent: Monday, March 26, 2012 4:48 PM Subject: Re: [R] many curves to the same plot You can use lines() with ecdf objects or use the not-at-all-surprisingly-named add = TRUE parameter

Re: [R] many curves to the same plot

2012-03-26 Thread Petr PIKAL
Hi If you went through help page you probably could find it yourself in shorter time then you spend writing email and waited for others to write back. see ?plot.stepfun > Dear all, > I would like to plot under the same plot > many curves like > > mycdf<-ecdf(runif(100)) > plot(mycdf) > curve(

Re: [R] many curves to the same plot

2012-03-26 Thread R. Michael Weylandt
You can use lines() with ecdf objects or use the not-at-all-surprisingly-named add = TRUE parameter of curve(). Michael On Mon, Mar 26, 2012 at 10:44 AM, Alaios wrote: > Dear all, > I would like to plot under the same plot > many curves like > > mycdf<-ecdf(runif(100)) > plot(mycdf) > curve(mycd