We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
My attempt at the morning exercise in base...
pkg <- as.data.frame(installed.packages()) nrow(pkg) head(pkg)
#' Exploring the packages
summary(pkg)
table(pkg$Priority) table(pkg$LibPath)
table(pkg$NeedsCompilation)
table(pkg$Built)
#' Reflections
table(pkg$Priority) pkg[which(pkg$Priority == 'base'), ] pkg[which(pkg$Priority == 'recommended'), ]
.libPaths() # gives package source available to R version of current session .Library # gives package source for all R versions installed on a machine
#' Going further
dir(.Library) %in% pkg$Package[which(pkg$Priority %in% c("base", "recommended"))]
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: