Hi all,
several packages print messages during loading. How do I avoid to
them when the packages are in the defaultPackages?
Here is an example.
With this in ~/.Rprofile
,----[ ~/.Rprofile ]
| old <- getOption("defaultPackages")
| options(defaultPackages = c(old, "filehash"))
| rm(old)
`----
I get as last line when starting R:
,----
| filehash: Simple key-value database (2.2-1 2012-03-12)
`----
Another package with (even more) prints during startup is
How can I avoid to get these messages?
There are several options in ?library to control the messages that are
displayed when loading packages. However, this does not seem be able to
supress all the messages. Some messages are defined by the package
authors, because they feel necessary that the user reads them.