The R Project SVN R

Rev

Rev 68948 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 68948 Rev 90246
Line 31... Line 31...
31
conflicts(, TRUE)
31
conflicts(, TRUE)
32
## gives something like
32
## gives something like
33
# $.GlobalEnv
33
# $.GlobalEnv
34
# [1] "lm"
34
# [1] "lm"
35
#
35
#
36
# $package:base
36
# $package:stats
37
# [1] "lm"
37
# [1] "lm"
38
 
38
 
39
## Remove things from your "workspace" that mask others:
39
## Remove things from your "workspace" that mask others:
40
remove(list = conflicts(detail = TRUE)$.GlobalEnv)
40
remove(list = conflicts(detail = TRUE)$.GlobalEnv)
41
}
41
}