I want to create an R package, but I'm completely new in this topic, and even though I've already checked some excellent resources like Hadley Wickham's R packages book, I've a couple of questions that I'd like to clarify:
- Do I need to import the
statspackage to make use of thelmfunction? - How can I make use of the piping operator
%>%in themagrittrpackage since I can not writelibrary(magrittr)? - If I created a function that is for utility purposes but it shouldn't be available to the end user, how can I hide it?
Any help is greatly appreciated!