I can produce my reports rather quickly thanks to knitr and RDoc; however I want to streamline my process a little more by automatically generating the documents in my R script.
Do ya'lls have any solutions or resources I could use to further investigate to create a solution?
To automate a knitr job you can use something like the command line below.
Rscript -e "library(knitr); knit2pdf('myRnw.Rnw')"
Put that in a .sh file and you can cron tab it all you want.
Explanation (aka the same again in English):