-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Importing functions from other packages #293
Comments
I thought |
So I read the post, and I get it, but I'm not sure this is a big enough deal to go through the entire codebase and remove all the @import tags. |
I also think it's more clear to use the |
Agree, huge work, little gain. Maybe what we can do is to keep an eye out for these when we do other stuff, and over time the functions will be naturally updated? Similarly to |
I've recently read an interesting article about connecting to other packages:
https://kbroman.org/pkg_primer/pages/depends.html
I do revisit functions quite often to see if
@importFrom
or@import
were added, and to me this approach seems a bit error prone. I think it would be much better to usepackage::function()
syntax everywhere in the package and remove all instances of@import
and@importFrom
. What do you think?The text was updated successfully, but these errors were encountered: