Suppress package load messages

Issue #17 resolved
Jason Vander Heiden created an issue

Function calls are spitting out package loading messages, which they shouldn’t. Example:

> results <- hierarchicalClones(ExampleDb, threshold=0.15)

Attaching package:dplyrThe following objects are masked frompackage:stats:

    filter, lag

The following objects are masked frompackage:base:

    intersect, setdiff, setequal, union

I suspect the .packages argument to foreach is to blame. You can probably get by without it by doing explicit :: declarations to the required dplyr functions instead of using the .packages argument, if that is indeed the problem.

Comments (1)

  1. Log in to comment