En la programación R , la punif()
función se utiliza para calcular el valor de la función de distribución acumulativa (CDF).
Sintaxis:
punif(q, min = 0, max = 1, lower.tail = TRUE, log.p = FALSE)Parámetros:
q: representa el vector de cuantiles
min, max: representa los límites inferior y superior de la distribución
lower.tail: representa el valor lógico. Si es VERDADERO, las probabilidades son P[X<=x]
log.p: representa el valor lógico. Si es VERDADERO, las probabilidades se dan como log(p)
Ejemplo 1:
# Create vector of random deviation u <- runif(20) punif(u) == u print(punif(u))
Producción:
[1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE [16] TRUE TRUE TRUE TRUE TRUE [1] 0.21571509 0.97224483 0.74654757 0.93053902 0.90868119 0.93048128 [7] 0.41566382 0.52074950 0.41353715 0.48460207 0.63706965 0.16338451 [13] 0.22761876 0.54239105 0.07045675 0.04363406 0.68484316 0.86928257 [19] 0.06046589 0.29565811
Ejemplo 2:
# Output to be present as PNG file png(file = "punifGFG.png") # Plot function curve(punif(x, min = 2, max = 6), 0, 8, ylim = c(0, 0.5), ylab = "f(x)") # Saving the file dev.off()
Producción:
Publicación traducida automáticamente
Artículo escrito por utkarsh_kumar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA