Possible Duplicate:
Library/package development - message when loading
I want to set up a web interface using Rapache; however, the underlying R code uses packages that display a quick message from the author. E.g., for data.table
,
Quick start guide : vignette("datatable-intro") Homepage : http://datatable.r-forge.r-project.org/
Is there a way to avoid this? I tried suppressMessages()
, and the quietly
option to library()
, but to no avail.
Thanks