다른 문제를 해결하기 위해 노력하는 동안이 문제가 발생했습니다.
다음과 같이 모든 R 객체를 제거 할 수 있습니다.
rm(list = ls(all = TRUE))
작업 세션 중에 설치된 패키지를 분리 할 수있는 동등한 명령이 있습니까?
> sessionInfo()
R version 2.12.2 (2011-02-25)
Platform: i386-pc-mingw32/i386 (32-bit)
locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
필요 (ggplot2)
Loading required package: ggplot2
Loading required package: reshape
Loading required package: plyr
Attaching package: 'reshape'
The following object(s) are masked from 'package:plyr':
round_any
Loading required package: grid
Loading required package: proto
sessionInfo ()
R version 2.12.2 (2011-02-25)
Platform: i386-pc-mingw32/i386 (32-bit)
locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] grid stats graphics grDevices utils datasets methods
[8] base
other attached packages:
[1] ggplot2_0.8.9 proto_0.3-9.1 reshape_0.8.4 plyr_1.4
글로벌 솔루션이 아니더라도 이런 식으로 시도했습니다.
pkg <- c("package:ggplot2_0.8.9", "package:proto_0.3-9.1", "package:reshape_0.8.4", "package:plyr_1.4")
detach(pkg, character.only = TRUE)
Error in detach(pkg, character.only = TRUE) : invalid 'name' argument
In addition: Warning message:
In if (is.na(pos)) stop("invalid 'name' argument") :
the condition has length > 1 and only the first element will be used
내가 찾는 것은 다음과 같은 글로벌 것입니다.
rm(list = ls(all = TRUE))
객체의 경우 첨부 된 기본 패키지를 제거하지 않을 것으로 예상됩니다.
감사;
R CMD check
패키지 를 전달 하는 것은 스스로를 깨끗하게 언로드해야하므로 R Core는 이것이 가능하고 누군가가 원하는 것을 기대합니다.