gl()
La función en lenguaje R se utiliza para generar factores especificando el patrón de sus niveles.
Sintaxis:
gl(x, k, longitud, etiquetas, ordenado)Parámetros:
x: Número de niveles
k: Número de repeticiones
length: Longitud de los resultados
tags: Etiquetas para el vector (opcional)
ordered: Valor booleano para ordenar los niveles
Ejemplo 1:
# R Program to generate factors # Creating a factor # using gl() function x1 <- gl(2, 5) # gl() function with # length specified x2 <- gl(3, 4, 12) # Printing the factors print(x1) print(x2)
Producción:
[1] 1 1 1 1 1 2 2 2 2 2 Levels: 1 2 [1] 1 1 1 1 2 2 2 2 3 3 3 3 Levels: 1 2 3
Ejemplo 2:
# R Program to generate factors # gl() function with # length and labels specified x1 <- gl(3, 4, 12, label = letters[1:12]) # gl() function with # length, label and order specified x2 <- gl(3, 4, 12, label = letters[1:12], ordered = T) # Printing the factors print(x1) print(x2)
Producción:
[1] a a a a b b b b c c c c Levels: a b c d e f g h i j k l [1] a a a a b b b b c c c c Levels: a < b < c < d < e < f < g < h < i < j < k < l
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