Re: [R] probabilty plot

2007-07-05 Thread Francisco J. Zagmutt
Hi Zeng, I just glanced at the link, but I think this is what you are after: x=rnorm(1000)#1000 random samples from N(0,1) y=rlnorm(1000)#1000 random samples from Lognormal(0,1) fx=ecdf(x)#Empirical cumulative density function of x fy=ecdf(y)#Empirical cumulative density function of y

[R] probabilty plot

2007-07-04 Thread along zeng
Hi all, I am a freshman of R,but I am interested in it! Those days,I am learning pages on NIST,with url http://www.itl.nist.gov/div898/handbook/eda/section3/probplot.htm, I am meeting a problem about probability plot and I don't know how to plot a data set with R. Could somebody tell me the

Re: [R] probabilty plot

2007-07-04 Thread John Kane
Is this what you mean ? --- mydata - c(1,2,3,4,5,7,5,4,3) plot(mydata) --- --- along zeng [EMAIL PROTECTED] wrote: Hi all, I am a freshman of R,but I am interested in it! Those days,I am learning pages on NIST,with url