标签: r matlab variables clear
我想删除一些变量,而不是remove()和rm所有变量。 在Matlab中,我怀疑: clearvars -except Environnement Species *_species Latitude Longitude
remove()
rm
clearvars -except Environnement Species *_species Latitude Longitude
答案 0 :(得分:0)
这是我能做的最好的事情。这会创建a,b,c并删除Global Env除b以外的所有内容。
a,b,c
Global Env
b
a<-1 b<-2 c<-1:5 rm(list = ls()[!ls() %in% c("b")])