pchisq增加小数精度

时间:2011-07-15 08:24:02

标签: r static statistics

有没有办法增加概率的小数精度 分布。

> 1-pchisq(90, 5)
[1] 0

可是:

> pchisq(90, 5, lower.tail=F)
[1] 6.71932e-18

1 个答案:

答案 0 :(得分:4)

如果您正在执行1 - foo以获取分发的上尾,那么请不要。而是使用lower.tail参数:

> pchisq(90, 5, lower.tail = FALSE)
[1] 6.719319e-18