手记

union(并),setdiff(差),intersect(交)R语言含义


union(并)

求两个向量的并集
集合可以是任何数值类型



union(x=1:3, y=2:5)

[1] 1 2 3 4 5

union(x=c("abc", "12"), y=c("bcd", "efg"))

[1] "abc" "12""bcd" "efg"


setdiff(差)

求向量x与向量y中不同的元素(只取x中不同的元素)
setdiff(x, y)



setdiff(x=1:4, y=2:3)[1] 1 4



intersect(交)

两个向量的交集



intersect(x=c(1:5, NA), y = c(2:5, NA))  

[1] 2 3 4 5 NA  

# 两个字符串向量的交集只有一个元素 "abc"

intersect(x=c("abc", "bcd"),

y = c("abc", 12, "Apple"))

[1] "abc"

0人推荐
随时随地看视频
慕课网APP