1. 程式人生 > >R語言 union、setdiff、insect

R語言 union、setdiff、insect

數值類型 數值 bcd [1] http apple ins bsp csdn

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"

ref:

https://blog.csdn.net/u011402596/article/details/44281271

R語言 union、setdiff、insect