Aleš Žiberna
2006-Jan-08 21:22 UTC
[R] How to unload a package or "undo" library("package")
Hello! I would like to unload a package form a current R session. I tried datach(package:packagename), however it does not work. The reason I want to unload it is that I want to correct some files in the package and reinstall it without closing an R session. Best, Ales Ziberna PS: I am using R 2.1.1 on Windows XP
Gabor Grothendieck
2006-Jan-08 21:41 UTC
[R] How to unload a package or "undo" library("package")
Here are some things to try: detach() - detach most recent attached package detach(2) - detach package which is in position 2 on search list. Same as detach() detach("package:mypackage") - mypackage from search list search() - display search list On 1/8/06, Ale? ?iberna <ales.ziberna at gmail.com> wrote:> Hello! > > I would like to unload a package form a current R session. I tried > datach(package:packagename), however it does not work. The reason I want to > unload it is that I want to correct some files in the package and reinstall > it without closing an R session. > > Best, > Ales Ziberna > > PS: I am using R 2.1.1 on Windows XP > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >