如何解决R语言中 the following objects are masked from data (pos=3)?

我在使用R语言的时候,经常会遇到“ the following objects are masked from data (pos=3)”这样的提示,因为每次都能运行出结果,所以每次也都没管它。直到我今天跑循环的时候,这个东西真的让我好烦,就想搞清楚怎么回事,再消除这样的提示。百度了许久,网上并没有合适的答案,于是去了外网搜索,结果如下:

标题很是有意思哈:
还是看正文吧:

R objects that reside in other R objects can require a lot of typing to access. For example, to refer to a variable x in a dataframe df, one could type df$x. This is no problem when the dataframe and variable names are short, but can become burdensome when longer names or repeated references are required, or objects in complicated structures must be accessed.

大概翻译:实践中,我们想使用数据框df中的x通常会用命令df$x即可,但是当名字较长或者要重复很多次的时候就很繁琐了。

The attach() function in R can be used to make objects within dataframes accessible in R with fewer keystrokes. As an example:

在这种情况下,attach()命令则会让我们轻松许多,即减少工作量。例如:

ds <- read.csv("http://www.math.smith.edu/r/data/help.csv")#读取数据
names(ds)
attach(ds)  #加载ds数据
mean(cesd)
[1] 32.84768  #结果

... then detach() the dataset to clean up after ourselves.
之后,用命令detach()结束使用数据集。

users are cautioned that if there is already a variable called cesd in the local workspace, issuing attach(ds), may not mean that cesdreferences ds$cesd. Name conflicts of this type are a common problem with attach() and care should be taken to avoid them.

  • 用户应注意,如果本地工作空间中已存在名为cesd的变量,则使用attach(ds)可能并不意味着cesdds$cesd之意。
  • 这种类型的名称冲突是attach()的常见问题,应注意避免它们。

The help page for attach() notes that attach can lead to confusion. The Google R Style Manual provides clear advice on this point, providing the following advice about attach(): The possibilities for creating errors when using attach are numerous. Avoid it.

attach()的help页面提示说“使用attach命令可能会导致混淆”。关于这一点,Google R Style Manual给出了明确的建议:使用attach()导致的错误可能有很多,避免使用它!

So what options exist for those who decide to go cold turkey?
那么,有哪些应对方法呢?

  1. Reference variables directly (e.g. lm(ds$x ~ ds$y))
    直接使用“$”符号(如果变量名较短,重复次数较少时)
  2. Specify the dataframe for commands which support this (e.g. lm(y ~ x, data=ds))
    直接说明命令的数据来源,例如: lm(y ~ x, data=ds)
  3. Use the with() function, which returns the value of whatever expression is evaluated (e.g. with(ds,lm(y ~x)))
    使用with()函数,它会返回被评估的任何表达式的值,例如with(ds,lm(y~x))

(Also note the within() function, which is similar to with(), but returns a modified object.)

注:within() 函数和 with()函数是近似的。

Some examples may be helpful:
比如下面这个例子:

直接用$符号:
> lm1 <- lm(cesd ~ pcs, data=ds)
> mean(ds$cesd[ds$female==1])  # these next three are equivalent
[1] 36.88785

或者用with命令:
> with(ds, mean(cesd[female==1]))
[1] 36.88785
> with(subset(ds, female==1), mean(cesd))
[1] 36.88785

In short, there’s never an actual need to use attach(), using it can lead to confusion or errors, and alternatives exists that avoid the problems. We recommend against it.

  • 简而言之,我们没有必要使用attach(),因为它会导致混淆或错误,何况我们有其它替代方案。
  • 故,我们建议不使用它!
结论:尽量不用 attach 命令!
  • 替代它的 with 命令怎么用?
with(data,{...})

详细语法可以在R中输入??with查看。

文献参考:https://www.r-bloggers.com/to-attach-or-not-attach-that-is-the-question/

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容