在 R 语言中查找具有部分名称的对象的位置和字符向量 - apropos() 和 find()函数
在本文中,我们将在 R 编程语言中查找具有部分名称的对象的位置和字符向量。
R – apropos()函数
R 语言中的 appros()函数将给出包含部分名称的名称字符向量。
Syntax: apropos(“x”, ignore.case, simple.word)
Parameters:
- x: partial-name of object
- ignore.case: Case sensitive or not
- simple.word: if TRUE the what is searched as a whole word
例子:
R
# R program to illustrate
# appros function
# Apply apropos function in R
apropos("max", ignore.case = FALSE, simple.word = FALSE)
R
# R program to illustrate
# find function
# Apply find function in R
find("varimax", ignore.case = FALSE, simple.word = FALSE)
输出:
“cummax” “max” “max.col” “pmax” “promax” “varimax” “which.max”
在上面的代码中,appros()函数将返回所有包含“max”的字符串。
R – find()函数
R 中的 find()函数返回可以找到具有特定名称的对象的位置。
Syntax: find(“x”, ignore.case, simple.word)
Parameters:
- x: partial-name of object
- ignore.case: Case sensitive or not
- simple.word: if TRUE the what is searched as a whole word
例子:
R
# R program to illustrate
# find function
# Apply find function in R
find("varimax", ignore.case = FALSE, simple.word = FALSE)
输出:
# "package:stats
在上面的代码中,我们得到了“varimax”的存储位置。所以 find()函数用于查找我们指定给它的内容。