gpt4 book ai didi

r - 如何找到所有附加的数据框?

转载 作者:行者123 更新时间:2023-12-02 06:56:42 24 4
gpt4 key购买 nike

当我在 R studio 中附加 data.frame 时,我收到此消息:

The following objects are masked from......

我忘了分离 data.frame

data<-read.table(file.choose(),header=TRUE)
View(data)
attach(data)
## The following objects are masked from vih (pos = 3):
## edad, edadg, id, numpares, numparg, sifprev, udvp, vih
## The following objects are masked from vih (pos = 4):
## edad, edadg, id, numpares, numparg, sifprev, udvp, vihhere

有没有办法知道附加了哪些 data.frames?

有没有办法用一个命令或函数分离所有数据帧?

最佳答案

首先,我建议您停止使用 attach()。这确实是一个糟糕的做法,因为几乎总是有更好的选择(例如 with()data= 参数)

但是您可以使用

查看附加对象
search()

如果您假设所有 data.frame 名称都不以“.”开头并且不包含“:”,您可以将它们全部分离

detach_dfs1 <- function() {
dfs <- grep("^\\.|.*[:].*|Autoloads", search(), invert=T)
if(length(dfs)) invisible(sapply(dfs, function(x) detach(pos=x)))
}

或者如果您假设 data.frames 在全局环境中,您可以这样做

detach_dfs2 <- function() {
dfs <- Filter(function(x) exists(x) && is.data.frame(get(x)), search())
if(length(dfs)) invisible(sapply(dfs, function(x) detach(x, character.only=T)))
}

关于r - 如何找到所有附加的数据框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29706764/

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