Data frames
Create an empty data.frame
Section titled “Create an empty data.frame”A data.frame is a special kind of list: it is rectangular. Each element (column) of the list has same length, and where each row has a “row name”. Each column has its own class, but the class of one column can be different from the class of another column (unlike a matrix, where all elements must have the same class).
In principle, a data.frame could have no rows and no columns:
> structure(list(character()), class = "data.frame")NULL<0 rows> (or 0-length row.names)But this is unusual. It is more common for a data.frame to have many columns and many rows. Here is a data.frame with three rows and two columns (a is numeric class and b is character class):
> structure(list(a = 1:3, b = letters[1:3]), class = "data.frame")[1] a b<0 rows> (or 0-length row.names)In order for the data.frame to print, we will need to supply some row names. Here we use just the numbers 1:3:
> structure(list(a = 1:3, b = letters[1:3]), class = "data.frame", row.names = 1:3) a b1 1 a2 2 b3 3 cNow it becomes obvious that we have a data.frame with 3 rows and 2 columns. You can check this using nrow(), ncol(), and dim():
> x <- structure(list(a = numeric(3), b = character(3)), class = "data.frame", row.names = 1:3)> nrow(x)[1] 3> ncol(x)[1] 2> dim(x)[1] 3 2R provides two other functions (besides structure()) that can be used to create a data.frame. The first is called, intuitively, data.frame(). It checks to make sure that the column names you supplied are valid, that the list elements are all the same length, and supplies some automatically generated row names. This means that the output of data.frame() might now always be exactly what you expect:
> str(data.frame("a a a" = numeric(3), "b-b-b" = character(3)))'data.frame': 3 obs. of 2 variables: $ a.a.a: num 0 0 0 $ b.b.b: Factor w/ 1 level "": 1 1 1The other function is called as.data.frame(). This can be used to coerce an object that is not a data.frame into being a data.frame by running it through data.frame(). As an example, consider a matrix:
> m <- matrix(letters[1:9], nrow = 3)> m [,1] [,2] [,3][1,] "a" "d" "g"[2,] "b" "e" "h"[3,] "c" "f" "i"And the result:
> as.data.frame(m) V1 V2 V31 a d g2 b e h3 c f i> str(as.data.frame(m))'data.frame': 3 obs. of 3 variables: $ V1: Factor w/ 3 levels "a","b","c": 1 2 3 $ V2: Factor w/ 3 levels "d","e","f": 1 2 3 $ V3: Factor w/ 3 levels "g","h","i": 1 2 3Subsetting rows and columns from a data frame
Section titled “Subsetting rows and columns from a data frame”Syntax for accessing rows and columns: [, [[, and $
Section titled “Syntax for accessing rows and columns: [, [[, and $”This topic covers the most common syntax to access specific rows and columns of a data frame. These are
-
- Using row and column numbers
- Using column (and row) names
- With single brackets
data[columns]to get a data frame - With double brackets
data[[one_column]]to get a vector - data.frame(..., row.names = NULL, check.rows = FALSE, check.names = TRUE, stringsAsFactors = default.stringsAsFactors())
- as.data.frame(x, row.names = NULL, optional = FALSE, ...) # generic function
- as.data.frame(x, ..., stringsAsFactors = default.stringsAsFactors()) # S3 method for class 'character'
- as.data.frame(x, row.names = NULL, optional = FALSE, ..., stringsAsFactors = default.stringsAsFactors()) # S3 method for class 'matrix'
- is.data.frame(x)
We will use the built-in mtcars data frame to illustrate.
Like a matrix: data[rows, columns]
Section titled “Like a matrix: data[rows, columns]”With numeric indexes
Section titled “With numeric indexes”Using the built in data frame mtcars, we can extract rows and columns using [] brackets with a comma included. Indices before the comma are rows:
# get the first rowmtcars[1, ]# get the first five rowsmtcars[1:5, ]Similarly, after the comma are columns:
# get the first columnmtcars[, 1]# get the first, third and fifth columns:mtcars[, c(1, 3, 5)]As shown above, if either rows or columns are left blank, all will be selected. mtcars[1, ] indicates the first row with all the columns.
With column (and row) names
Section titled “With column (and row) names”So far, this is identical to how rows and columns of matrices are accessed. With data.frames, most of the time it is preferable to use a column name to a column index. This is done by using a character with the column name instead of numeric with a column number:
# get the mpg columnmtcars[, "mpg"]# get the mpg, cyl, and disp columnsmtcars[, c("mpg", "cyl", "disp")]Though less common, row names can also be used:
mtcars["Mazda Rx4", ]Rows and columns together
Section titled “Rows and columns together”The row and column arguments can be used together:
# first four rows of the mpg columnmtcars[1:4, "mpg"]
# 2nd and 5th row of the mpg, cyl, and disp columnsmtcars[c(2, 5), c("mpg", "cyl", "disp")]A warning about dimensions:
Section titled “A warning about dimensions:”When using these methods, if you extract multiple columns, you will get a data frame back. However, if you extract a single column, you will get a vector, not a data frame under the default options.
## multiple columns returns a data frameclass(mtcars[, c("mpg", "cyl")])# [1] "data.frame"## single column returns a vectorclass(mtcars[, "mpg"])# [1] "numeric"There are two ways around this. One is to treat the data frame as a list (see below), the other is to add a drop = FALSE argument. This tells R to not “drop the unused dimensions”:
class(mtcars[, "mpg", drop = FALSE])# [1] "data.frame"Note that matrices work the same way - by default a single column or row will be a vector, but if you specify drop = FALSE you can keep it as a one-column or one-row matrix.
Like a list
Section titled “Like a list”Data frames are essentially lists, i.e., they are a list of column vectors (that all must have the same length). Lists can be subset using single brackets [ for a sub-list, or double brackets [[ for a single element.
With single brackets data[columns]
Section titled “With single brackets data[columns]”When you use single brackets and no commas, you will get column back because data frames are lists of columns.
mtcars["mpg"]mtcars[c("mpg", "cyl", "disp")]my_columns <- c("mpg", "cyl", "hp")mtcars[my_columns]The difference between data[columns] and data[, columns] is that when treating the data.frame as a list (no comma in the brackets) the object returned will be a data.frame. If you use a comma to treat the data.frame like a matrix then selecting a single column will return a vector but selecting multiple columns will return a data.frame.
## When selecting a single column## like a list will return a data frameclass(mtcars["mpg"])# [1] "data.frame"## like a matrix will return a vectorclass(mtcars[, "mpg"])# [1] "numeric"With double brackets data[[one_column]]
Section titled “With double brackets data[[one_column]]”To extract a single column as a vector when treating your data.frame as a list, you can use double brackets [[. This will only work for a single column at a time.
# extract a single column by name as a vectormtcars[["mpg"]]
# extract a single column by name as a data frame (as above)mtcars["mpg"]Using $ to access columns
Section titled “Using $ to access columns”A single column can be extracted using the magical shortcut $ without using a quoted column name:
# get the column "mpg"mtcars$mpgColumns accessed by $ will always be vectors, not data frames.
Drawbacks of $ for accessing columns
Section titled “Drawbacks of $ for accessing columns”The $ can be a convenient shortcut, especially if you are working in an environment (such as RStudio) that will auto-complete the column name in this case. However, $ has drawbacks as well: it uses non-standard evaluation to avoid the need for quotes, which means it will not work if your column name is stored in a variable.
my_column <- "mpg"# the below will not workmtcars$my_column# but these will workmtcars[, my_column] # vectormtcars[my_column] # one-column data framemtcars[[my_column]] # vectorDue to these concerns, $ is best used in interactive R sessions when your column names are constant. For programmatic use, for example in writing a generalizable function that will be used on different data sets with different column names, $ should be avoided.
Also note that the default behaviour is to use partial matching only when extracting from recursive objects (except environments) by $
# give you the values of "mpg" column# as "mtcars" has only one column having name starting with "m"mtcars$m# will give you "NULL"# as "mtcars" has more than one columns having name starting with "d"mtcars$dAdvanced indexing: negative and logical indices
Section titled “Advanced indexing: negative and logical indices”Whenever we have the option to use numbers for a index, we can also use negative numbers to omit certain indices or a boolean (logical) vector to indicate exactly which items to keep.
Negative indices omit elements
Section titled “Negative indices omit elements”mtcars[1, ] # first rowmtcars[ -1, ] # everything but the first rowmtcars[-(1:10), ] # everything except the first 10 rowsLogical vectors indicate specific elements to keep
Section titled “Logical vectors indicate specific elements to keep”We can use a condition such as < to generate a logical vector, and extract only the rows that meet the condition:
# logical vector indicating TRUE when a row has mpg less than 15# FALSE when a row has mpg >= 15test <- mtcars$mpg < 15
# extract these rows from the data framemtcars[test, ]We can also bypass the step of saving the intermediate variable
# extract all columns for rows where the value of cyl is 4.mtcars[mtcars$cyl == 4, ]# extract the cyl, mpg, and hp columns where the value of cyl is 4mtcars[mtcars$cyl == 4, c("cyl", "mpg", "hp")]Convenience functions to manipulate data.frames
Section titled “Convenience functions to manipulate data.frames”Some convenience functions to manipulate data.frames are subset(), transform(), with() and within().
subset
Section titled “subset”The subset() function allows you to subset a data.frame in a more convenient way (subset also works with other classes):
subset(mtcars, subset = cyl == 6, select = c("mpg", "hp")) mpg hpMazda RX4 21.0 110Mazda RX4 Wag 21.0 110Hornet 4 Drive 21.4 110Valiant 18.1 105Merc 280 19.2 123Merc 280C 17.8 123Ferrari Dino 19.7 175In the code above we asking only for the lines in which cyl == 6 and for the columns mpg and hp. You could achieve the same result using [] with the following code:
mtcars[mtcars$cyl == 6, c("mpg", "hp")]transform
Section titled “transform”The transform() function is a convenience function to change columns inside a data.frame. For instance the following code adds another column named mpg2 with the result of mpg^2 to the mtcars data.frame:
mtcars <- transform(mtcars, mpg2 = mpg^2)with and within
Section titled “with and within”Both with() and within() let you to evaluate expressions inside the data.frame environment, allowing a somewhat cleaner syntax, saving you the use of some $ or [].
For example, if you want to create, change and/or remove multiple columns in the airquality data.frame:
aq <- within(airquality, { lOzone <- log(Ozone) # creates new column Month <- factor(month.abb[Month]) # changes Month Column cTemp <- round((Temp - 32) * 5/9, 1) # creates new column S.cT <- Solar.R / cTemp # creates new column rm(Day, Temp) # removes columns})Introduction
Section titled “Introduction”Data frames are likely the data structure you will used most in your analyses. A data frame is a special kind of list that stores same-length vectors of different classes. You create data frames using the data.frame function. The example below shows this by combining a numeric and a character vector into a data frame. It uses the : operator, which will create a vector containing all integers from 1 to 3.
df1 <- data.frame(x = 1:3, y = c("a", "b", "c"))df1## x y## 1 1 a## 2 2 b## 3 3 cclass(df1)## [1] "data.frame"Data frame objects do not print with quotation marks, so the class of the columns is not always obvious.
df2 <- data.frame(x = c("1", "2", "3"), y = c("a", "b", "c"))df2## x y## 1 1 a## 2 2 b## 3 3 cWithout further investigation, the “x” columns in df1 and df2 cannot be differentiated. The str function can be used to describe objects with more detail than class.
str(df1)## 'data.frame': 3 obs. of 2 variables:## $ x: int 1 2 3## $ y: Factor w/ 3 levels "a","b","c": 1 2 3str(df2)## 'data.frame': 3 obs. of 2 variables:## $ x: Factor w/ 3 levels "1","2","3": 1 2 3## $ y: Factor w/ 3 levels "a","b","c": 1 2 3Here you see that df1 is a data.frame and has 3 observations of 2 variables, “x” and “y.” Then you are told that “x” has the data type integer (not important for this class, but for our purposes it behaves like a numeric) and “y” is a factor with three levels (another data class we are not discussing). It is important to note that, by default, data frames coerce characters to factors. The default behavior can be changed with the stringsAsFactors parameter:
df3 <- data.frame(x = 1:3, y = c("a", "b", "c"), stringsAsFactors = FALSE)str(df3)## 'data.frame': 3 obs. of 2 variables:## $ x: int 1 2 3## $ y: chr "a" "b" "c"Now the “y” column is a character. As mentioned above, each “column” of a data frame must have the same length. Trying to create a data.frame from vectors with different lengths will result in an error. (Try running data.frame(x = 1:3, y = 1:4) to see the resulting error.)
As test-cases for data frames, some data is provided by R by default. One of them is iris, loaded as follows:
mydataframe <- irisstr(mydataframe)Convert all columns of a data.frame to character class
Section titled “Convert all columns of a data.frame to character class”A common task is to convert all columns of a data.frame to character class for ease of manipulation, such as in the cases of sending data.frames to a RDBMS or merging data.frames containing factors where levels may differ between input data.frames.
The best time to do this is when the data is read in - almost all input methods that create data frames have an options stringsAsFactors which can be set to FALSE.
If the data has already been created, factor columns can be converted to character columns as shown below.
bob <- data.frame(jobs = c("scientist", "analyst"), pay = c(160000, 100000), age = c(30, 25))str(bob)'data.frame': 2 obs. of 3 variables: $ jobs: Factor w/ 2 levels "analyst","scientist": 2 1 $ pay : num 160000 100000 $ age : num 30 25# Convert *all columns* to characterbob[] <- lapply(bob, as.character)str(bob) 'data.frame': 2 obs. of 3 variables: $ jobs: chr "scientist" "analyst" $ pay : chr "160000" "1e+05" $ age : chr "30" "25"# Convert only factor columns to characterbob[] <- lapply(bob, function(x) { if is.factor(x) x <- as.character(x) return(x)})Convert data stored in a list to a single data frame using do.call
Section titled “Convert data stored in a list to a single data frame using do.call”If you have your data stored in a list and you want to convert this list to a data frame the do.call function is an easy way to achieve this. However, it is important that all list elements have the same length in order to prevent unintended recycling of values.
dataList <- list(1:3,4:6,7:9)dataList# [[1]]# [1] 1 2 3## [[2]]# [1] 4 5 6## [[3]]# [1] 7 8 9
dataframe <- data.frame(do.call(rbind, dataList))dataframe# X1 X2 X3# 1 1 2 3# 2 4 5 6# 3 7 8 9It also works if your list consists of data frames itself.
dataframeList <- list(data.frame(a = 1:2, b = 1:2, c = 1:2), data.frame(a = 3:4, b = 3:4, c = 3:4))dataframeList# [[1]]# a b c# 1 1 1 1# 2 2 2 2
# [[2]]# a b c# 1 3 3 3# 2 4 4 4
dataframe <- do.call(rbind, dataframeList)dataframe# a b c# 1 1 1 1# 2 2 2 2# 3 3 3 3# 4 4 4 4Subsetting Rows by Column Values
Section titled “Subsetting Rows by Column Values”Built in functions can subset rows with columns that meet conditions.
df <- data.frame(item = c(1:10), price_Elasticity = c(-0.57667, 0.03205, -0.04904, 0.10342, 0.04029, 0.0742, 0.1669, 0.0313, 0.22204, 0.06158), total_Margin = c(-145062, 98671, 20576, -56382, 207623, 43463, 1235, 34521, 146553, -74516))To find rows with price_Elasticity > 0:
df[df$price_Elasticity > 0, ]
item price_Elasticity total_Margin2 2 0.03205 986714 4 0.10342 -563825 5 0.04029 2076236 6 0.07420 434637 7 0.16690 12358 8 0.03130 345219 9 0.22204 14655310 10 0.06158 -74516subset based on price_Elasticity > 0 and total_Margin > 0:
df[df$price_Elasticity > 0 & df$total_Margin > 0, ]
item price_Elasticity total_Margin2 2 0.03205 986715 5 0.04029 2076236 6 0.07420 434637 7 0.16690 12358 8 0.03130 345219 9 0.22204 146553