Re: [R] ECDF, distribution of Pareto, distribution of Normal

2007-07-11 Thread J. R. M. Hosking
livia wrote: > Hello all, > > I would like to plot the emperical CDF, normal CDF and pareto CDF in the > same graph and I amusing the following codes. "z" is a vector and I just > need the part when z between 1.6 and 3. > > plot(ecdf(z), do.points=FALSE, verticals=TRUE, > xlim=c(1.6,3),ylim=c(1-s

Re: [R] ECDF, distribution of Pareto, distribution of Normal

2007-07-11 Thread livia
hint? Stefan Grosse-2 wrote: > > > > Original Message > Subject: [R] ECDF, distribution of Pareto, distribution of Normal > From: livia <[EMAIL PROTECTED]> > To: r-help@stat.math.ethz.ch > Date: Tue Jul 10 2007 18:35:04 GMT+0200 >> Hello

Re: [R] ECDF, distribution of Pareto, distribution of Normal

2007-07-10 Thread Stefan Grosse
Original Message Subject: [R] ECDF, distribution of Pareto, distribution of Normal From: livia <[EMAIL PROTECTED]> To: r-help@stat.math.ethz.ch Date: Tue Jul 10 2007 18:35:04 GMT+0200 > Hello all, > > I would like to plot the emperical CDF, normal CDF and pa

[R] ECDF, distribution of Pareto, distribution of Normal

2007-07-10 Thread livia
Hello all, I would like to plot the emperical CDF, normal CDF and pareto CDF in the same graph and I amusing the following codes. "z" is a vector and I just need the part when z between 1.6 and 3. plot(ecdf(z), do.points=FALSE, verticals=TRUE, xlim=c(1.6,3),ylim=c(1-sum(z>1.6)/length(z), 1)) x