📜  Python中的sympy.stats.FDistribution()

📅  最后修改于: 2022-05-13 01:55:12.343000             🧑  作者: Mango

Python中的sympy.stats.FDistribution()

借助sympy.stats.FDistribution()方法,我们可以得到代表 F 分布的连续随机变量。

示例 #1:
在这个例子中我们可以看到,通过使用sympy.stats.FDistribution()方法,我们可以通过这个方法得到代表 F 分布的连续随机变量。

# Import sympy and FDistribution
from sympy.stats import FDistribution, density
from sympy import Symbol
  
d1 = Symbol("d1", integer = True, positive = True)
d2 = Symbol("d2", integer = True, positive = True)
z = Symbol("z")
  
# Using sympy.stats.FDistribution() method
X = FDistribution("x", d1, d2)
gfg = density(X)(z)
  
pprint(gfg)

输出 :

示例 #2:

# Import sympy and FDistribution
from sympy.stats import FDistribution, density
from sympy import Symbol
  
d1 = 5
d2 = 6
z = 1
  
# Using sympy.stats.FDistribution() method
X = FDistribution("x", d1, d2)
gfg = density(X)(z)
  
pprint(gfg)

输出 :