"Gabor Grothendieck" <[EMAIL PROTECTED]> writes: > You can use > > if(require(myPackage)) { ... }
Probably you will want: if (suppressWarnings(require("somePkg"))) { ... } This way, you won't get a lot of noise when somePkg isn't installed. Running the examples at least some of the time seems like a nice idea to assure basic functionality... + seth ______________________________________________ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel