You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At work, I'm working multiple reports that all rely on common data files that occasionally update. Originally, each report lived in its own project with its own Data folder. I then ran into the issue of not being able to easily track which projects had the most recent data. As a result, I migrated them all to one my_reports mega-project with a single Data folder. Now I have trouble organizing my files in a way that follows project-oriented a workflow. Is there a way to have both reliable data and a good file structure?
The text was updated successfully, but these errors were encountered:
I have a similar organizational issue! My work collects annual data sets, which we've been storing in a central Data folder. These data files get used in numerous projects, and it's been difficult to know how to store data and other project files that still works with RStudio Projects. Besides copying the data files into the folders from each project, is there a better way to handle this that avoids having many versions of data files that can easily get out of sync with the "true" data file in the Data folder?
I'll recap an in-person conversation here. There are a few points to consider:
If you have a dataset that is used in many projects, the dataset should probably be its own "thing".
You might make into a proper R package (a data package, like gapminder or babynames, but for your data). You could still keep it personal to you or your group, i.e. it doesn't have to go to CRAN. But the packaging infrastructure gets you a lot of useful structure.
At work, I'm working multiple reports that all rely on common data files that occasionally update. Originally, each report lived in its own project with its own Data folder. I then ran into the issue of not being able to easily track which projects had the most recent data. As a result, I migrated them all to one my_reports mega-project with a single Data folder. Now I have trouble organizing my files in a way that follows project-oriented a workflow. Is there a way to have both reliable data and a good file structure?
The text was updated successfully, but these errors were encountered: