當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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