## assess user and system packages
##
library(purrr)
library(dplyr)
<- as.data.frame(installed.packages()[,c(1:4, 16)], stringsAsFactors = FALSE)
df.all <- split.data.frame(df.all, df.all$LibPath)
df.split <- reduce(df.split, full_join, by = 'Package')
df.wide names(df.wide) <- c('Package', paste0(rep(c('libpath_', 'version_', 'priority_', 'built_'), length(df.split)), rep(seq(length(df.split)), each = 4)))
## in library 2 but not 1
<- df.wide %>%
df.user_lib filter(is.na(libpath_1) & !is.na(libpath_2))
## in both library 1 and 2
<- df.wide %>%
df.libs12 filter(!is.na(libpath_1) & !is.na(libpath_2))
After our IT colleagues updated R to version 3.5.0 I found that I have many packages duplicated between the system library and my user library. This short piece of code lists all packages with their version for all libraries. It helps identify those that can be removed from the user library or updated.