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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。