[R] CDF for pareto distribution

2007-07-11 Thread livia
Hi, I would like to use the following codes to plot the CDF for pareto distribution. Before doing this, I have plot the emperical one. x - seq(1.6, 3, 0.1) lines(x,pgpd(x, 1.544,0.4477557,), col=red) Could anyone give me some advice whether the above codes are correct? Many thanks. -- View

Re: [R] CDF for pareto distribution

2007-07-11 Thread Vincent Goulet
Le 07-07-11 à 07:56, livia a écrit : Hi, I would like to use the following codes to plot the CDF for pareto distribution. Before doing this, I have plot the emperical one. x - seq(1.6, 3, 0.1) lines(x,pgpd(x, 1.544,0.4477557,), col=red) Could anyone give me some advice whether the above

Re: [R] CDF for pareto distribution

2007-07-11 Thread livia
Hi, thank you very much for your reply. The function pgpd() is from the package POT, and the 1.544 is the location parameter, 0.4477557 is the scale parameter and -0.50113 is the shape parameter, which can be both negtive or positive. Vincent Goulet wrote: Le 07-07-11 à 07:56, livia a écrit

Re: [R] CDF for pareto distribution

2007-07-11 Thread Vincent Goulet
Le 07-07-11 à 10:01, livia a écrit : Hi, thank you very much for your reply. The function pgpd() is from the package POT, and the 1.544 is the location parameter, 0.4477557 is the scale parameter and -0.50113 is the shape parameter, which can be both negtive or positive. The