Being able to make new variables from those already in your data set is an essential skill for data manipulation prior to making graphs or doing analyses. These new variables could be a transformed variable that you would like to analyse, a new variable that is a function of existing ones, or a new set of labels for your samples.
To demonstrate a few of the commonly used functions in R for doing this, let’s consider a data set on the feeding specificity of marine herbivores on five species of macroalgae. Twenty replicate individuals of each of seven species of macroalgae were collected from Sydney Harbour, and the abundance of seven species of herbivorous crustacean recorded from each replicate sample (data from Poore et al. 2000).
Download the data set, Herbivore_specialisation.csv, and load into R.
Herbivores <- read.csv(file = "Herbivore_specialisation.csv", header = TRUE)
The first two columns are categorical variables that label the samples as coming from each of the five habitats or as being collected during the day or the night. The third column is the replicate number per combination of habitat and day/night. The fourth column is the biomass of the habitat sampled and the rest of the columns are the counts of each herbivore species in each sample.
Adding a new variable to an existing data frame can be done by assigning the outcome of a given function to a new variable name in the following fashion.
Herbivores$log_Mass <- log(Herbivores$Mass)
Herbivores$Ampithoe <- Herbivores$Ampithoe_caddi + Herbivores$Ampithoe_kava + Herbivores$Ampithoe_ngana
The first line creates a new variable called log_Mass which is the log of the variable Mass from the Herbivores data frame.
The second line creates a new variable called Ampithoe which is the sum of the abundances for each of the three species of Ampithoe in the data set.
Having to reference both the data frame and the variable name in these expressions can get pretty messy, so we recommend using functions from the package dplyr which allow us to just use variable names. First, load the package:
library(dplyr)
The function mutate
is then used to create new variables. To achieve the same result as the above code, we would use:
Herbivores <- mutate(Herbivores, log_Mass = log(Mass))
Herbivores <- mutate(Herbivores, Ampithoe = Ampithoe_caddi + Ampithoe_kava + Ampithoe_ngana)
Even neater is to run several things at once. We could create both of those new variables and many others with single block of code. For example:
Herbivores <- mutate(Herbivores,
log_Mass = log(Mass), # log of Mass
Ampithoe = Ampithoe_caddi + Ampithoe_kava + Ampithoe_ngana, # sum of three columns
Total_abundance = rowSums(Herbivores[, 5:12]), # sum of columns 5-12 with all abundance data
Total_abundance_perGram = Total_abundance / Mass # abundance as numbers per g of habitat
)
The arguments of mutate
are simply the name of the data frame followed by any number of expressions that create new variables.
In the above examples, note that the new variables have been added to the existing data frame, and all old variables have been kept. You can use transmute
if you want to drop the original variables.
These functions become especially powerful when combined with some of the others in dplyr. See our pages on subsetting and summarising data.
dplyr offers a straightforward function, rename
, to change the name of any variable. For example, to change Mass to Biomass, we simply use:
Herbivores <- rename(Herbivores, Biomass = Mass)
Combining the content of several columns into a single column can be useful to provide a different set of labels for rows in your data set, or new levels of a categorical variable that you may want to use in graphs. The function unite
in the package tidyr allows us to do this very easily. First, install and load this package into R.
library(tidyr)
If we wanted to make a new categorical variable where each level was the unique combination of habitat and day/night, we would use:
Herbivores <- unite(Herbivores, "Habitat_DayNight", c(Habitat, DayNight), sep = "_")
The arguments of unite' are: * the data frame to be used (in this case Herbivores) * the name of the new variable (in this case "Habitat_DayNight") * the columns to be united, within
c()`
* the character used to separate the values in each column being united (in this case “_“)
View the data frame again and you will notice the new variable, and the fact that the old ones have been removed. It is a better idea to keep them, by adding remove=FALSE
Herbivores <- unite(Herbivores, "Habitat_DayNight", c(Habitat, DayNight), sep = "_", remove = FALSE)
Separating content from one column into several separate variables is also very useful if the levels of categorical variables in the original data set are actually combinations of more than one variable. The function separate
in tidyr does this.
For example, if we wanted to contrast the abundance of herbivores among the genera of algae being used as habitat (rather than individual species), we would need to make a new variable that held only the genus names. We can use separate
to make two new columns, one for genus and one for species, from the values in the Habitat variable.
Herbivores <- separate(Herbivores, Habitat, c("Genus", "species"), sep = "_", remove = FALSE)
The arguments of separate' are: * the data frame to be used (in this case Herbivores) * the name of the new variable to be separated (in this case "Habitat") * the names of the new variables, within
c()(in this case "Genus" and "species") * the character used to separate the values in the column being separated (in this case "_") * the
remove=FALSE` means we keep the variable being separated in the new version of the data frame
Note that this was only possible because there was a character separating the two variables in the text of the one to be separated (e.g., we couldn’t do this is if the species names in the Habitat variable were originally GenusSpecies, rather than Genus_species).
Type ?mutate
, ?unite
, and ?separate
for the R help for these functions.
Data wrangling with dplyr and tidyr cheat sheet produced by Rstudio. Some images above were sourced from this document.
Author: Alistair Poore
Year: 2016
Last updated: Feb 2022