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