is.element()
R语言中的函数用于检查第一个对象的元素是否存在于第二个对象中。它为每个相等的值返回 TRUE。
用法: is.element(x, y)
参数:
x and y:具有项目序列的对象
范例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)
输出:
[1] TRUE TRUE TRUE [1] TRUE TRUE TRUE FALSE FALSE FALSE
范例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)
输出:
[1] FALSE TRUE [1] FALSE TRUE FALSE
相关用法
- R语言 setdiff()用法及代码示例
- R语言 setequal()用法及代码示例
- R语言 intersect()用法及代码示例
- R语言 union()用法及代码示例
- R语言 sum()用法及代码示例
- R语言 combine()用法及代码示例
- R语言 ls()用法及代码示例
- R语言 rm()用法及代码示例
- R语言 identical()用法及代码示例
- R语言 merge()用法及代码示例
- R语言 between()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 match()用法及代码示例
- R语言 prod()用法及代码示例
- R语言 lapply()用法及代码示例
- R语言 is.character()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check for Presence of Common Elements between Objects in R Programming – is.element() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。