is.element()
La función en lenguaje R se usa para verificar si los elementos de los primeros objetos están presentes en el segundo objeto o no. Devuelve VERDADERO para cada valor igual.
Sintaxis: es.elemento(x, y)
Parámetros:
x e y: Objetos con secuencia de elementos
Ejemplo 1:
# R program to illustrate # the use of is.element() function # Vector 1 x1 <- c(1, 2, 3) # Vector 2 x2 <- c(1:6) # Calling is.element() Function is.element(x1, x2) is.element(x2, x1)
Producción:
[1] TRUE TRUE TRUE [1] TRUE TRUE TRUE FALSE FALSE FALSE
Ejemplo 2:
# R program to illustrate # the use of is.element() function # Data frame 1 data_x <- data.frame(x1 = c(5, 3, 7), x2 = c(1, 4, 2)) # Data frame 2 data_y <- data.frame(y1 = c(2, 3, 4), y2 = c(1, 4, 2), y3 = c(3, 4, 5)) # Calling is.element() Function is.element(data_x, data_y) is.element(data_y, data_x)
Producción:
[1] FALSE TRUE [1] FALSE TRUE FALSE
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