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
stats
package to make use of thelm
function? - How can I make use of the piping operator
%>%
in themagrittr
package 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!