mbojan / d3net

Shiny application for interactive network data visualization and exploration
7 stars 2 forks source link

Namespace conflicts #17

Closed mbojan closed 9 years ago

mbojan commented 10 years ago

R CMD check complains about namespace conflicts

Warning message:
replacing previous import by ‘network::is.directed’ when loading ‘non-package environment’ 

The only function imported both from "igraph" and "network" is is.directed.

Is there a way to specify namespace dependence (so that :: can be used) without actually importing functions into "d3net" package namespace?

mbojan commented 10 years ago

Seems like dropping all namespace directives all together and keeping the packages "igraph" and "network" in the Imports in DESCRIPTION solves the problem. We need to only import "shiny".

mbojan commented 9 years ago

Solved