When I attach a data.frame in R studio, I get this message:
The following objects are masked from......
I forgot to detach the 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
Is there a way of knowing which data.frames are attached?
Is there a way of detaching ALL the data.frames with one command or function?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…