seq()
La función en lenguaje R se usa para crear una secuencia de elementos en un vector. Toma la longitud y la diferencia entre valores como argumento opcional.
Sintaxis:
seq(from, to, by, length.out)Parámetros:
from: Elemento inicial de la secuencia
to: Elemento final de la secuencia
by: Diferencia entre los elementos
length.out: Longitud máxima del vector
Ejemplo 1:
# R Program to illustrate # the use of seq() Function # Creating vector using seq() vec1 <- seq(1, 10, by = 2) vec2 <- seq(1, 10, length.out = 7) # Printing vectors print(vec1) print(vec2)
Producción:
[1] 1 3 5 7 9 [1] 1.0 2.5 4.0 5.5 7.0 8.5 10.0
Ejemplo 2:
# R Program to illustrate # the use of seq() Function # Creating vector using seq() vec1 <- seq(10, 1, by = -2) vec2 <- seq(10, 1, length.out = 4) # Printing vectors print(vec1) print(vec2)
Producción:
[1] 10 8 6 4 2 [1] 10 7 4 1
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