In general it's preferable (perhaps just IMO) to import selectively vs. blanket import(pkg). Blanket imports risk unintended collisions, especially as packages evolve (add+remove functions), though the risk for the case of default packages (methods/utils/stats) is more borderline.
data.table/NAMESPACE
Line 133 in 07fd933
In general it's preferable (perhaps just IMO) to import selectively vs. blanket
import(pkg). Blanket imports risk unintended collisions, especially as packages evolve (add+remove functions), though the risk for the case of default packages (methods/utils/stats) is more borderline.