gpt4 book ai didi

r - 从 R 中的环境中删除对象

转载 作者:行者123 更新时间:2023-12-05 03:09:27 25 4
gpt4 key购买 nike

我正在阅读 Hadley 的 Advanced R。在第 8 章中,他说我们可以使用 rm() 从环境中删除对象。但是,删除后我仍然可以看到该对象。

这是我的代码:

e<- new.env()
e$a<-1
e$b<-2
e$.a<-3
e$c<-4
ls(e,all.names = TRUE)

#remove the object c
rm("c",envir = e)
ls(e,all.names = TRUE) #Doesn't exist here

#does the variable exist?
exists("c",envir = e) #Shows TRUE. Why is this?
exists("m",envir = e) #FALSE

ls(e,all.names = TRUE)
ls(e)

正如我们在上面看到的,理想情况下,我希望 exists("c", envir = e) 返回 FALSE

有什么想法吗?提前致谢。

最佳答案

来自 help(exists):

If inherits is TRUE and a value is not found for x in the specified environment, the enclosing frames of the environment are searched until the name x is encountered.

命名变量时要小心。您与基函数 c() 有冲突。由于 inherits = TRUE 是默认值,因此会搜索封闭环境,在这种情况下会找到基函数 c(),它会生成 TRUE 结果。因此,要仅搜索环境 e 然后退出,请使用 inherits = FALSE

exists("c", envir = e, inherits = FALSE)
# [1] FALSE

关于r - 从 R 中的环境中删除对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42731820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com