Angela Re wrote:

Good morning,
I tried to apply the ks test to a Student distribution by ks.test(input, "pt", ncp = 0, df = 58) or ks.test(input, "pt", df = 58) without success where input contains my data and 58 is the fredoom degree number. Why?
Thank you, Angela


______________________________________________
[EMAIL PROTECTED] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html


Please do what the appended messages tells you to do:
read the posting guide and learn to use a sensible subject line!

The following works for me, so please also specify a reproducible example that shows what does not work....

 input <- rnorm(100)
 ks.test(input, "pt", ncp = 0, df = 58)


Uwe Ligges

______________________________________________
[EMAIL PROTECTED] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to