Reputation: 33
Hopefully an easy one. Can anyone point me to the SciPy function that will calculate a right-tailed F Probability Distribution?
Like Excel's =FINV(0.2, 1, 2)
that results in 3.555555556
. Thanks, Scott
Upvotes: 3
Views: 1717
Reputation: 56684
import scipy.stats
print scipy.stats.f.isf(0.2, 1, 2) # => 3.5555555555555576
Upvotes: 1