You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# List of packages to check
packages <- c("magrittr", "lumberjack", "stringr", "dplyr", "data.table", "remotes", "bnosac/word2vec")
# Function to check if a package is installed
check_package <- function(pkg) {
if (require(pkg, character.only = TRUE)) {
message(pkg, " is installed and loaded correctly")
} else {
message(pkg, " is not installed or not loaded correctly")
}
}
# Check each package
sapply(packages, check_package)
https://github.com/jdh-observer/FYjDViXVXggz/blob/master/install.R
The text was updated successfully, but these errors were encountered: