Con la ayuda del np.negative_binomial()
método, podemos obtener la array de series binomiales negativas usando el np.negative_binomial()
método.
Sintaxis:
np.negative_binomial(n, p, size)
Retorno: Retorna una array de series binomiales negativas.
Ejemplo #1:
En este ejemplo, podemos ver que al usar el np.negative_binomial()
método, podemos obtener una array de series binomiales negativas al usar este método.
# import numpy import numpy as np # using np.negative_binomial() method gfg = np.random.negative_binomial(3, 0.33, 10) print(gfg)
Producción :
[ 8 12 23 1 2 7 5 3 1 5]
Ejemplo #2:
# import numpy import numpy as np # using np.negative_binomial() method gfg = np.random.negative_binomial(5, 0.1234, 50) print(gfg)
Producción :
[15 26 60 19 15 18 15 55 46 36 28 50 13 47 40 56 24 80 47 19 36 62 45 57
37 32 15 28 20 65 40 34 34 35 28 38 43 50 20 71
3 3 3 8 4 0 4 0 86]
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