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
Since data.table doesn't respect quietly = TRUE when loading:
data.table
quietly = TRUE
> library(data.table, warn.conflicts = F, quietly = T, verbose = F) data.table 1.11.4 Latest news: http://r-datatable.com
It would be nice to have an option to suppress this, e.g. tidyverse has:
tidyverse
options(tidyverse.quiet = TRUE) library(tidyverse)
The alternative, using suppressPackageStartupMessages(), is a bit clunky.
suppressPackageStartupMessages()
The text was updated successfully, but these errors were encountered:
Thanks @leobarlach, I've edited your post heavily to re-frame it as a feature request, I think it's a valid and good request to have an option like this.
Sorry, something went wrong.
No branches or pull requests
Since
data.table
doesn't respectquietly = TRUE
when loading:It would be nice to have an option to suppress this, e.g.
tidyverse
has:The alternative, using
suppressPackageStartupMessages()
, is a bit clunky.The text was updated successfully, but these errors were encountered: