Something we've been doing in some of our pkgs, is to prefix fxns with something very short, e.g., here could do ukp or up - so get_neighbourhoods could become ukp_neighbourhoods
because R doesn't require users to namespace fxn calls, fxn collisions can happen, so this helps that
and helps users with knowing what pkg a fxn comes from easily
Something we've been doing in some of our pkgs, is to prefix fxns with something very short, e.g., here could do
ukp
orup
- soget_neighbourhoods
could becomeukp_neighbourhoods
because R doesn't require users to namespace fxn calls, fxn collisions can happen, so this helps that
and helps users with knowing what pkg a fxn comes from easily
just a thought...