ptukey()
La función en lenguaje R se usa para calcular el valor de la función de distribución acumulativa (CDF) sobre el rango estudentizado para una secuencia de valores numéricos.
Sintaxis: ptukey(x, nmeans, df)
Parámetros:
x: Vector numérico
nmeans: Número de medias
df: Grado de libertad
Ejemplo 1:
# R Program to compute the value of # CDF for Studentized Range # Creating a sequence of Numeric values x <- seq(1, 10, by = 1) # Calling ptukey() Function y <- ptukey(x, nmeans = 7, df = 5) y
Producción:
[1] 0.01416051 0.22099429 0.54676395 0.76823006 0.88284988 0.93871676 [7] 0.96637587 0.98063547 0.98833593 0.99268670
Ejemplo 2:
# R Program to compute the value of # CDF for Studentized Range # Creating a sequence of Numeric values x <- seq(1, 10, by = 0.2) # Calling ptukey() Function y <- ptukey(x, nmeans = 8, df = 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