Hacker News new | ask | show | jobs
by mjhay 815 days ago
Calling library() is kind of an antipattern in production R code. You can either call namespaced functions (like say dplyr::mutate()), or use roxygen.

https://roxygen2.r-lib.org/articles/namespace.html

1 comments

Agreed but the GP isn't wrong. It's much much nicer to import a library with an alias in Python.