user1505300
user1505300

Reputation: 33

Python/SciPy version of Excel FInv function

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

Answers (1)

Hugh Bothwell
Hugh Bothwell

Reputation: 56684

import scipy.stats

print scipy.stats.f.isf(0.2, 1, 2)  # => 3.5555555555555576

Upvotes: 1

Related Questions