lgatto / tidies

A Grammar of Data Manipulation for Omics Data
https://lgatto.github.io/tidies/
21 stars 2 forks source link

Fix combine clash #8

Closed lgatto closed 3 years ago

lgatto commented 5 years ago

To import every symbol from a package but for a few exceptions, pass the except argument to import. The directive

import(foo, except=c(bar, baz))

imports every symbol from foo except bar and baz. The value of except should evaluate to something coercible to a character vector, after substituting each symbol for its corresponding string.