On 03-Jun-05 Peter Dalgaard wrote:
> "Yi-Xiong Zhou" <[EMAIL PROTECTED]> writes:
> 
>> The following contingency table generates p-value > 1 from
>> fisher.test()
>> 
>>  
>> 
>> ff = c(0,10,250,5000); dim(ff) = c(2,2); fhisher.test(ff)$p.value
> 
> On this system (PIII, Fedora Core 3):
> 
>> ff = c(0,10,250,5000); dim(ff) = c(2,2); fisher.test(ff)$p.value -1
> [1] 1.384892e-12
> 
> Is that interesting?

And on mine

(A: PII, Red Had 9, R-1.8.0):

 ff <- c(0,10,250,5000); dim(ff) <- c(2,2);

 1-fisher.test(ff)$p.value
 [1] 1.268219e-11

(B: PIII, SuSE 7.2, R-2.1.0beta):

 ff <- c(0,10,250,5000); dim(ff) <- c(2,2);

 1-fisher.test(ff)$p.value
 [1] -1.384892e-12

Peter, I'm not sure which is the more interesting!

Best wishes,
Ted.


--------------------------------------------------------------------
E-Mail: (Ted Harding) <[EMAIL PROTECTED]>
Fax-to-email: +44 (0)870 094 0861
Date: 03-Jun-05                                       Time: 21:45:13
------------------------------ XFMail ------------------------------

______________________________________________
R-help@stat.math.ethz.ch 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