For my research project I want to use a make
-based workflow but also deliver the project in the form of a package. Thus, I want to put reusable functions in the /R
directory for others to access but also use R scripts executable from the command line to do the actual analysis (generate and clean datasets, create plots, etc.), with make
tracking the relationships among files and rebuilding what is necessary.
In packages, supposedly the /exec
directory is meant for executable files. I'm wondering if putting my executable scripts in this directory would be appropriate.