setequal()
R语言中的函数用于检查两个对象是否相等。该函数将两个对象(如 Vectors、dataframes 等)作为参数,如果对象相等或不相等,则结果为 TRUE 或 FALSE。
用法: setequal(x, y)
参数:
x and y:具有项目序列的对象
范例1:
# R program to illustrate
# the use of setequal() function
# Vector 1
x1 <- c(1, 2, 3, 4, 5, 6)
# Vector 2
x2 <- c(1:6)
# Vector 3
x3 <- c(2, 3, 4, 5, 6)
# Calling setequal() Function
setequal(x1, x2)
setequal(x1, x3)
输出:
[1] TRUE [1] FALSE
范例2:
# R program to illustrate
# the use of setequal() 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(5, 6, 7),
y2 = c(2, 2, 2))
# Calling setequal() Function
setequal(data_x, data_y)
输出:
[1] TRUE
相关用法
- R语言 setdiff()用法及代码示例
- R语言 intersect()用法及代码示例
- R语言 union()用法及代码示例
- R语言 identical()用法及代码示例
- R语言 is.element()用法及代码示例
- R语言 sum()用法及代码示例
- R语言 combine()用法及代码示例
- R语言 ls()用法及代码示例
- R语言 rm()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 prod()用法及代码示例
- R语言 outer()用法及代码示例
- R语言 cov()用法及代码示例
- R语言 cor()用法及代码示例
- R语言 merge()用法及代码示例
- R语言 julian()用法及代码示例
- R语言 between()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.ordered()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Check if Two Objects are Equal in R Programming – setequal() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。