Re: [R] kolmogorov-Smirnov critical values

2012-05-17 Thread aramos
Thank you all for your help!! ! Alex -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245p4630393.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing

[R] kolmogorov-Smirnov critical values

2012-05-16 Thread aramos
Hi! Any one knows how to obtain critical values for the k-s statistic, using R? Thanks, Alex -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread R. Michael Weylandt
On Wed, May 16, 2012 at 9:52 AM, aramos ara...@fep.up.pt wrote: Hi! Any one knows how to obtain critical values for the k-s statistic, using R? Take a look at ?ks.test and the code of ks.test to see how R does it. OSS is super helpful for these sorts of things. Michael Thanks, Alex --

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread Uwe Ligges
On 16.05.2012 15:52, aramos wrote: Hi! Any one knows how to obtain critical values for the k-s statistic, using R? ks.test(.)$statistic Uwe ligges Thanks, Alex -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245.html Sent from

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread Petr Savicky
On Wed, May 16, 2012 at 06:52:48AM -0700, aramos wrote: Hi! Any one knows how to obtain critical values for the k-s statistic, using R? Hi. I do not know, whether there is a function for this. However, the following randomized approach allows to extract a table of statistic/p.value pairs

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread aramos
I think that command will give me the statistics observed value!! Not quantiles from the k-s distribution! -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245p4630275.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread aramos
Thanks, I've already done that!! What is OSS? -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245p4630276.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread R. Michael Weylandt
Open source software (what you're driving) Michael On Wed, May 16, 2012 at 12:27 PM, aramos ara...@fep.up.pt wrote: Thanks, I've already done that!! What is OSS? -- View this message in context: http://r.789695.n4.nabble.com/kolmogorov-Smirnov-critical-values-tp4630245p4630276.html Sent

Re: [R] kolmogorov-Smirnov critical values

2012-05-16 Thread David Winsemius
On May 16, 2012, at 12:27 PM, aramos wrote: Thanks, I've already done that!! But the illustration for how you get the statistics is in the code. Describe what you want: number of samples, two versus single sided, two sample versus comparing to theory, which table columns should be used.