setdiff()
R语言中的函数用于查找在第一个对象中但不在第二个对象中的元素。
用法: setdiff(x, y)
参数:
x and y:具有项目序列的对象
范例1:
# R program to illustrate
# the use of setdiff() function
# Vector 1
x1 <- c(1, 2, 3, 4, 5, 6, 5, 5)
# Vector 2
x2 <- c(2:4)
# Calling setdiff() Function
x3 <- setdiff(x1, x2)
print(x3)
输出:
[1] 1 5 6
范例2:
# R program to illustrate
# the use of setdiff() function
# Data frame 1
data_x <- data.frame(x1 = c(5, 6, 7),
x2 = c(2, 2, 2))
# Data frame 2
data_y <- data.frame(y1 = c(2, 3, 4),
y2 = c(2, 2, 2))
# Calling setdiff() Function
data_z <- setdiff(data_x, data_y)
print(data_z)
输出:
x1 1 5 2 6 3 7
相关用法
- R语言 sum()用法及代码示例
- R语言 is.element()用法及代码示例
- R语言 intersect()用法及代码示例
- R语言 setequal()用法及代码示例
- R语言 union()用法及代码示例
- R语言 identical()用法及代码示例
- R语言 combine()用法及代码示例
- R语言 ls()用法及代码示例
- R语言 rm()用法及代码示例
- R语言 names()用法及代码示例
- R语言 sign()用法及代码示例
- R语言 args()用法及代码示例
- R语言 cov()用法及代码示例
- R语言 cor()用法及代码示例
- R语言 julian()用法及代码示例
- R语言 levels()用法及代码示例
- R语言 dim()用法及代码示例
- R语言 arrayInd()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 nrow()用法及代码示例
- R语言 max()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Get Exclusive Elements between Two Objects in R Programming – setdiff() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。