dunif()
función en lenguaje R se utiliza para proporcionar la densidad de la función de distribución.
Sintaxis:
dunif(x, min = 0, max = 1, log = FALSO)Parámetros:
x: representa el vector
min, max: representa los límites inferior y superior del
registro de distribución: representa el valor lógico de las probabilidades
Ejemplo 1:
# Create vector of random deviation u <- runif(20) dunif(u) == u print(dunif(u))
Producción:
[1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE [13] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE [1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Ejemplo 2:
# Output to be present as PNG file png(file = "dunifGFG.png") # Plot density curve(dunif(x, min = 2, max = 6), 0, 8, ylim = c(0, 0.5), ylab = "f(x)", main = "Uniform Density 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