En la programación R , qunif()
la función da el valor de la función cuantil sobre la distribución uniforme.
Sintaxis:
qunif(p, min, max, lower.tail = TRUE, log.p = FALSE)Parámetros:
p: representa el vector de probabilidades
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[Xx]
log.p: representa el valor lógico. Si es VERDADERO, las probabilidades se dan como log(p)
Ejemplo 1:
# R program to find the value of # Quantile Function # Creating a vector x <- seq(0, 1, by = 0.2) # qunif() function qunif(x, min = 2, max = 6)
Producción:
[1] 2.0 2.8 3.6 4.4 5.2 6.0
Ejemplo 2:
# Create variables x <- seq(0, 1, by = 0.02) y <- qunif(x, min = 1, max = 5) # Output to be present as PNG file png(file = "qunifGFG.png") # Plot plot(y, type = "o") # 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