conflicts(base)
conflicts()所属R语言包:base
Search for Masked Objects on the Search Path
屏蔽对象上的搜索路径搜索
译者:生物统计家园网 机器人LoveR
描述----------Description----------
conflicts reports on objects that exist with the same name in two or more places on the search path, usually because an object in the user's workspace or a package is masking a system object of the same name. This helps discover unintentional masking.
conflictssearch路径上的两个或两个以上的地方的名称相同,通常存在,因为在用户的工作区或包的对象是掩盖了同名的系统对象的对象上的报告。“这有助于发现无意掩蔽。
用法----------Usage----------
conflicts(where = search(), detail = FALSE)
参数----------Arguments----------
参数:where
A subset of the search path, by default the whole search path.
搜索路径中的一个子集,默认情况下,整个搜索路径。
参数:detail
If TRUE, give the masked or masking functions for all members of the search path.
如果TRUE,搜索路径中的所有成员的蒙面或屏蔽功能。
值----------Value----------
If detail=FALSE, a character vector of masked objects. If detail=TRUE, a list of character vectors giving the masked or masking objects in that member of the search path. Empty vectors are omitted.
如果detail=FALSE,一个蒙面对象的特征向量。如果detail=TRUE,字符的搜索路径中的成员中,屏蔽或屏蔽对象的向量。空向量省略。
举例----------Examples----------
lm <- 1:3
conflicts(, TRUE)
## gives something like[#给出了类似]
# $.GlobalEnv[美元。GlobalEnv]
# [1] "lm"[[1]“LM”]
#[]
# $package:base[$包:基地]
# [1] "lm"[[1]“LM”]
## Remove things from your "workspace" that mask others:[#从你的“工作区”,面具人的事情:]
remove(list = conflicts(detail=TRUE)$.GlobalEnv)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|