0
When starting Rstudio the following message appears: Loading required package: sp
. I try to install the package sp
and the message appears:
Warning in install.packages :
package ‘sp’ is in use and will not be installed
That way I can’t install it. Also, because of this mistake, I’m having trouble calling the package dplyr
. How do I make that mistake?
See if you have a file
.RData
in his Working directory. This file (this is the full name, not the extension) stores the R environment when the session ends. This is where the instruction to load the package should besp
right at the start.– Rui Barradas
See also
detach(unload = TRUE)
orunloadNamespace
, as stated on the help page?library
.– Rui Barradas
Thanks for the help, but I had to install again.
– Bruno Avila