Organization of R Studio Projects

I've created an R Markdown report template for a monthly operating report (knitted and distributed in html) that would draw each month on a different .csv data file. Each month would have a similar template (with the date and data parameters reflecting the current month), the knitted html file for the parameters of that month, and a data file for that month.

What's the best way to organize this workflow: 1) A single R Project, which saves each month's data and knitted report to different monthly folders, or 2) A new R Project for every month (or some other option)?

Certainly you don't want to duplicate R projects and R scripts.
You can just tell R from the project to create a new folder like 'projectX-month' and save there the reports of this month.
It will keep your work easier

1 Like