Possible Duplicate:
How to unload a package without restarting R?
To load a package into R we can go library(.) or require(.). How do I disable a package during a coding session. I want something that’s the opposite of require(.).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think maybe you’re looking for
detach(package:splines, unload = TRUE).As you might gather from the comments below, be sure to read carefully the Details section of
?detachto make sure you know exactly what will happen when using this with or without theunloadandforcearguments.