I am working on upgrading to ggtern to handle ggplot 2.0.X, I need to import the grid package, however ggplot2 now exports arrow and unit , which generate warnings when loading my package:
Warning messages: 1: replacing previous import by 'grid::arrow' when loading 'ggtern' 2: replacing previous import by 'grid::unit' when loading 'ggtern'
Is it possible to import a library, with the exception of a few functions, that is, something like the effect of the following can be useful in roxygen:
which should have the same effect as the following (minus import arrow and unit ):
Any suggestions?
source share