On Jul 11, 2004, at 1:07 PM, Frank E Harrell Jr wrote:
The Hmisc package has in its .First.lib function a verbose argument,
which I thought was the way to allow users to suppress certain
messages,
by issuing library(Hmisc, verbose=FALSE). But I see that library( )
does not pass verbose to .First.lib. The default for verbose in Hmisc
is TRUE because .First.lib prints some important information about
masked functions. What is the best way to fix this?
AFAIR the official way to suppress unwanted messages is
warn.conflicts=FALSE so the user probably wants to issue
library(Hmisc, warn.conflicts=FALSE).