Programming with R

Best Practices for Writing R

Overview

Teaching: 30 min
Exercises: 0 min
Questions
  • How can I write R that other people can understand and use?

Objectives
  • Define best formatting practices when writing code in R scripts.

  • Synthesize a consistent personal coding style to increase code readability, consistency, and repeatability.

  • Apply this style to one’s own code.

  1. Start your code with an annotated description of what the code does when it is run:
#This is code to replicate the analyses and figures from my 2014 Science paper.
#Code developed by Sarah Supp, Tracy Teal, and Jon Borelli
  1. Next, load all of the packages that will be necessary to run your code (using library):
library(ggplot2)
library(reshape)
library(vegan)
  1. Set your working directory before source()ing a script, or start R inside your project folder:

One should exercise caution when using setwd(). Changing directories in a script file can limit reproducibility:

The following error message indicates that R has failed to set the working directory you specified:

Error in setwd("~/path/to/working/directory") : cannot change working directory

It is best practice to have the user running the script begin in a consistent directory on their machine and then use relative file paths from that directory to access files (see below).

  1. Annotate and mark your code using # or #- to set off sections of your code and to make finding specific parts of your code easier.

  2. If you create only one or a few custom functions in your script, put them toward the top of your code so they are among the first objects created. If you have written many functions, put them all in their own .R file and then source those files. source will define all of these functions so that your code can make use of them as needed. For the reasons listed above, try to avoid using setwd() (or other functions that have side-effects in the user’s workspace) in scripts you source.

source("my_genius_fxns.R")
  1. Use a consistent style within your code. For example, name all matrices something ending in .mat. Consistency makes code easier to read and problems easier to spot.

  2. Keep your code in bite-sized chunks. If a single function or loop gets too long, consider looking for ways to break it into smaller pieces.

  3. Don’t repeat yourself–automate! If you are repeating the same code over and over, use a loop or a function to repeat that code for you. Needless repetition doesn’t just waste time–it also increases the likelihood you’ll make a costly mistake!

  4. Keep all of your source files for a project in the same directory, then use relative paths as necessary to access them. For example, use

dat <- read.csv(file = "files/dataset-2013-01.csv", header = TRUE)

rather than:

dat <- read.csv(file = "/Users/Karthik/Documents/sannic-project/files/dataset-2013-01.csv", header = TRUE)
  1. R can run into memory issues. It is a common problem to run out of memory after running R scripts for a long time. To inspect the objects in your current R environment, you can list the objects, search current packages, and remove objects that are currently not in use. A good practice when running long lines of computationally intensive code is to remove temporary objects after they have served their purpose. However, sometimes, R will not clean up unused memory for a while after you delete objects. You can force R to tidy up its memory by using gc().
interim_object <- data.frame(rep(1:100,10),rep(101:200,10),rep(201:300,10)) # Sample dataset of 1000 rows
object.size(interim_object) # Reports the memory size allocated to the object
rm(interim_object) # Removes only the object itself and not necessarily the memory allotted to it
gc() # Force R to release memory it is no longer using
ls()  # Lists all the objects in your current workspace
rm(list = ls()) # If you want to delete all the objects in the workspace and start with a clean slate
  1. Don’t save a session history (the default option in R, when it asks if you want an RData file). Instead, start in a clean environment so that older objects don’t remain in your environment any longer than they need to. If that happens, it can lead to unexpected results.

  2. Wherever possible, keep track of sessionInfo() somewhere in your project folder. Session information is invaluable because it captures all of the packages used in the current project. If a newer version of a package changes the way a function behaves, you can always go back and reinstall the version that worked (Note: At least on CRAN, all older versions of packages are permanently archived).

  3. Collaborate. Grab a buddy and practice “code review”. Review is used for preparing experiments and manuscripts; why not use it for code as well? Our code is also a major scientific achievement and the product of lots of hard work!

  4. Develop your code using version control and frequent updates!

Best Practice

  1. What other suggestions do you have for coding best practices?
  2. What are some specific ways we could restructure the code we worked on today to make it easier for a new user to read? Discuss with your neighbor.
  3. Make two new R scripts called inflammation.R and inflammation_fxns.R. Copy and paste code into each script so that inflammation.R “does stuff” and inflammation_fxns.R holds all of your functions. Hint: you will need to add source to one of the files.

Key Points