Hi,
Thanks for the input and idea. It turns out that my colorspace
package was the one that was built on rforge. It was a dependency so it was difficult to see the issue. In order to troubleshoot based on your idea I wrote the following code after I loaded in the three or so libraries that I was using:
sessionInfo()-> info
packages_loaded <- info$loadedOnly
packages_loaded %>%
map_df(., ~sum(grepl(., pattern = "CRAN"))) %>%
gather(package, status) %>%
filter(status !=1)
Any non-base packages that appears I reinstalled from cran.
It worked!