Since data.table doesn't respect quietly = TRUE when loading:
> 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:
options(tidyverse.quiet = TRUE)
library(tidyverse)
The alternative, using suppressPackageStartupMessages(), is a bit clunky.
Since
data.tabledoesn't respectquietly = TRUEwhen loading:It would be nice to have an option to suppress this, e.g.
tidyversehas:The alternative, using
suppressPackageStartupMessages(), is a bit clunky.