rpackageconventionscode-organizationproject-organization

How to organize large R programs?


When I undertake an R project of any complexity, my scripts quickly get long and confusing.

What are some practices I can adopt so that my code will always be a pleasure to work with? I'm thinking about things like

Basically, what are your rules of thumb for organizing large R scripts?


Solution

  • The standard answer is to use packages -- see the Writing R Extensions manual as well as different tutorials on the web.

    It gives you

    Just running source() over code works for really short snippets. Everything else should be in a package -- even if you do not plan to publish it as you can write internal packages for internal repositories.

    As for the 'how to edit' part, the R Internals manual has excellent R coding standards in Section 6. Otherwise, I tend to use defaults in Emacs' ESS mode.

    Update 2008-Aug-13: David Smith just blogged about the Google R Style Guide.