Con la ayuda del sympy.stats.YuleSimon()
método, podemos obtener la variable aleatoria que representa la distribución de Yule-Simon.
Sintaxis :
sympy.stats.YuleSimon(name, rho)
Return : Devuelve la variable aleatoria.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar sympy.stats.YuleSimon()
el método, podemos obtener la distribución de Yule-Simon al usar este método.
# Import sympy and Yule-Simon from sympy.stats import YuleSimon, density, E, variance from sympy import Symbol, simplify rho = 5 # Using sympy.stats.YuleSimon() method X = YuleSimon("X", rho) gfg = density(X)(0.5) print(gfg)
Producción :
5*beta(0.5, 6)
Ejemplo #2:
# Import sympy and Yule-Simon from sympy.stats import YuleSimon, density, E, variance from sympy import Symbol, simplify rho = 5 z = Symbol("z") # Using sympy.stats.YuleSimon() method X = YuleSimon("X", rho) gfg = density(X)(z) print(gfg)
Producción :
5*beta(z, 6)
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA