当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 charmatch()用法及代码示例


R 语言中的 charmatch() 函数用于查找两个参数之间的匹配。

用法: charmatch(x, table, nomatch = NA_integer_)
参数: 
x: the values to be matched 
table: the values to be matched against 
nomatch: the integer value to be returned at non-matching position 
 

范例1:

Python3


# R program to illustrate
# charmatch function
 
# Calling the charmatch() function
charmatch("Geeks", c("Geeks", "forGeeks"))
charmatch("for", c("Geeks", "forGeeks"))
charmatch("forGeeks", c("Geeks", "forGeeks", "GeeksforGeeks"))
charmatch("GeeksforGeeks", c("Geeks", "forGeeks", "GeeksforGeeks"))

输出:



[1] 1
[1] 2
[1] 2
[1] 3

范例2:

Python3


# R program to illustrate
# charmatch function
 
# Calling the charmatch() function
charmatch("an", "sand")
charmatch("and", "sand")
charmatch("sand", "sand")

输出:

[1] NA
[1] NA
[1] 1

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting Match of an Element within a Vector in R Programming – charmatch() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。