Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
うまくいけば、簡単なものです。右側のF確率分布を計算するSciPy関数を誰かに教えてもらえますか?
Excelの=FINV(0.2, 1, 2)ように、結果は3.555555556。ありがとう、スコット
=FINV(0.2, 1, 2)
3.555555556
import scipy.stats print scipy.stats.f.isf(0.2, 1, 2) # => 3.5555555555555576