I am importing a package called "KernSmooth" and want the start up message not to show up ...
In my Description file:
Package: test
Title: Test
Author: Mike
Description: Test
Maintainer: Mike
Depends: R(>= 2.10.0)
Imports: KernSmooth
And my Namespace file:
import(KernSmooth)
But when I load the package I still get the start up message:
KernSmooth 2.23 loaded
Copyright M. P. Wand 1997-2009
Is my only option not to import it in NAMESPACE and use
suppressMessages(require(KernSmooth))
within my R function to avoid the message?