qweibull()
La función en lenguaje R se usa para calcular el valor de la función cuantil para la distribución de Weibull.
Sintaxis: qweibull(x, forma)
Parámetros:
x: Numérico Vector
forma: Parámetro de forma
Ejemplo 1:
# R Program to compute the value of # Quantile Weibull Function # Creating a sequence of x-values x <- seq(0, 1, by = 0.2) # Calling qweibull() Function y <- qweibull(x, shape = 0.5) y
Producción:
[1] 0.00000000 0.04979304 0.26094282 0.83958871 2.59029039 Inf
Ejemplo 2:
# R Program to compute the value of # Quantile Weibull Function # Creating a sequence of x-values x <- seq(0, 1, by = 0.02) # Calling qweibull() Function y <- qweibull(x, shape = 0.7) # Plot a graph plot(y)
Producción:
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA