Python中的sympy.stats.NegativeBinomial()

Python中的sympy.stats.NegativeBinomial()

sympy.stats.NegativeBinomial()方法的帮助下,我们可以得到代表负二项分布的随机变量。
Python中的sympy.stats.NegativeBinomial()

语法 : sympy.stats.NegativeBinomial(name, r, p)
返回:返回随机变量。

例子#1 :
在这个例子中,我们可以看到,通过使用sympy.stats.NegativeBinomial()方法,我们能够得到负二项分布。

# Import sympy and Negativebinomial
from sympy.stats import NegativeBinomial, density, E, variance
from sympy import Symbol, S
  
r = 5
p = S.One / 5
  
# Using sympy.stats.NegativeBinomial() method
X = NegativeBinomial("x", r, p)
gfg = density(X)(0.5)
  
print(gfg)

输出 :

0.360633043411166

例子#2 :

# Import sympy and Negativebinomial
from sympy.stats import NegativeBinomial, density, E, variance
from sympy import Symbol, S
  
r = 4
p = 0.6
z = Symbol("z")
  
# Using sympy.stats.NegativeBinomial() method
X = NegativeBinomial("x", r, p)
gfg = density(X)(z)
  
print(gfg)

输出 :

0.0256*0.6**z*binomial(z + 3, z)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Python SymPy-Stats