Wednesday, July 3, 2024
HomeLanguagesPythonsympy.stats.Poisson() in Python

sympy.stats.Poisson() in Python

With the help of sympy.stats.Poisson() method, we can get the random variable representing the poisson distribution.

Syntax : sympy.stats.Poisson(name, lambda)
Return : Return the random variable.

Example #1 :
In this example we can see that by using sympy.stats.Poisson() method, we are able to get the random variable representing poisson distribution by using this method.




# Import sympy and poisson
from sympy.stats import Poisson, density, E, variance
from sympy import Symbol, simplify
  
# Using sympy.stats.Poisson() method
rate = Symbol("lambda", positive = True)
X = Poisson("x", rate)
gfg = density(X)(4)
  
print(gfg)


Output :

lambda**4*exp(-lambda)/24

Example #2 :




# Import sympy and poisson
from sympy.stats import Poisson, density, E, variance
from sympy import Symbol, simplify
  
# Using sympy.stats.Poisson() method
rate = Symbol("lambda", positive = True)
X = Poisson("x", rate)
gfg = density(X)(6)
  
print(gfg)


Output :

lambda**6*exp(-lambda)/720

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments