Does anyone have a recommendation for sharing workspaces and data frames in R? I’m working at a start-up and we have little experience working in larger production environments where lots of employees are all using the same data.
Is there a way to set permissions on data frames and share them? Or do orgs in our situation just store their data in a database like MySQL and just download it to data frames on a case-by-case basis?
Any tips would be greatly appeciated from those with experience in this area!
Thanks!
One approach would be to dump variables via
save()to a shared location and have other read those in viaload()— it has the added benefits of compression and fast read/write operations for binary modes.You can of course also serialize to file or a database. Or, if you must, even to human-readable files but those will be the slowest to be read back in.
Edit As per comments, here is how to change file modes post-save: