A data set that have more than one dimension is conceptually hard to store as a vector. For two-dimensional data set the solution to this is to instead use matrices or data frames. As with vectors all values in a matrix has to be of the same type (eg. you can not mix for example characters and numerics in the same matrix). For data frames this is not a requirement and different columns can have different modes, but all columns in a data frame have the same number of entries. In addition to these R also have objects named lists that can store any type of data set and are not restricted by types or dimensions.
In this exercise you will learn how to:
The command to create a matrix in R is matrix()
.
As input it takes a vector of values, the number of
rows and the number of columns.
X <- matrix(1:12, nrow = 4, ncol = 3)
X
## [,1] [,2] [,3]
## [1,] 1 5 9
## [2,] 2 6 10
## [3,] 3 7 11
## [4,] 4 8 12
Note that if one only specify the number of rows or columns the it will infer the size of the matrix automatically using the size of vector and the option given. The default way of filling the matrix is column-wise, so the first values from the vector ends up in column 1 of the matrix. If you instead wants to fill the matrix row by row you can set the byrow flag to TRUE.
X <- matrix(1:12, nrow = 4, ncol = 3, byrow = TRUE)
X
## [,1] [,2] [,3]
## [1,] 1 2 3
## [2,] 4 5 6
## [3,] 7 8 9
## [4,] 10 11 12
Subsetting a matrix is done the same way as for vectors, but you have more than one dimension to work with. So you specify the rows and column needed.
X[1,2]
## [1] 2
If one wants all values in a column or a row this can be specified by leaving the other dimension empty, hence this code will print all values in the second column.
X[,2]
## [1] 2 5 8 11
Note that if the retrieved part of a matrix can be represented as a vector (eg one of the dimension have the length 1) R will convert it to a vector otherwise it will still be a matrix.
Create a matrix containing 1:12 as shown similar to the matrix X above.
mode(X)
length(X)
## [1] "numeric"
## [1] 12
X[X>6]
## [1] 7 10 8 11 9 12
X[,c(3,2,1)]
## [,1] [,2] [,3]
## [1,] 3 2 1
## [2,] 6 5 4
## [3,] 9 8 7
## [4,] 12 11 10
X.2 <- rbind(X, rep(0, 3))
X.2
## [,1] [,2] [,3]
## [1,] 1 2 3
## [2,] 4 5 6
## [3,] 7 8 9
## [4,] 10 11 12
## [5,] 0 0 0
NA
.
X[,1:2] <- NA
X
## [,1] [,2] [,3]
## [1,] NA NA 3
## [2,] NA NA 6
## [3,] NA NA 9
## [4,] NA NA 12
X[] <- 0
as.vector(X)
## [1] 0 0 0 0 0 0 0 0 0 0 0 0
outer()
that generates matrices was mentioned. Try to generate the same vector as before, but this time using outer()
. This function is very powerful, but can be hard to wrap you head around, so try to follow the logic, perhaps by creating a simple example to start with.letnum <- outer(paste("Geno",letters[1:19], sep = "_"), 1:3, paste, sep = "_")
class(letnum)
sort(as.vector(letnum))
## [1] "matrix" "array"
## [1] "Geno_a_1" "Geno_a_2" "Geno_a_3" "Geno_b_1" "Geno_b_2" "Geno_b_3"
## [7] "Geno_c_1" "Geno_c_2" "Geno_c_3" "Geno_d_1" "Geno_d_2" "Geno_d_3"
## [13] "Geno_e_1" "Geno_e_2" "Geno_e_3" "Geno_f_1" "Geno_f_2" "Geno_f_3"
## [19] "Geno_g_1" "Geno_g_2" "Geno_g_3" "Geno_h_1" "Geno_h_2" "Geno_h_3"
## [25] "Geno_i_1" "Geno_i_2" "Geno_i_3" "Geno_j_1" "Geno_j_2" "Geno_j_3"
## [31] "Geno_k_1" "Geno_k_2" "Geno_k_3" "Geno_l_1" "Geno_l_2" "Geno_l_3"
## [37] "Geno_m_1" "Geno_m_2" "Geno_m_3" "Geno_n_1" "Geno_n_2" "Geno_n_3"
## [43] "Geno_o_1" "Geno_o_2" "Geno_o_3" "Geno_p_1" "Geno_p_2" "Geno_p_3"
## [49] "Geno_q_1" "Geno_q_2" "Geno_q_3" "Geno_r_1" "Geno_r_2" "Geno_r_3"
## [55] "Geno_s_1" "Geno_s_2" "Geno_s_3"
A. A * B
B. A / B
C. A %x% B
D. A + B
E. A - B
F. A == B
A <- matrix(1:4, ncol = 2, nrow = 2)
B <- matrix(5:8, ncol = 2, nrow = 2)
A
B
A * B
A / B
A %x% B
A + B
A - B
A == B
## [,1] [,2]
## [1,] 1 3
## [2,] 2 4
## [,1] [,2]
## [1,] 5 7
## [2,] 6 8
## [,1] [,2]
## [1,] 5 21
## [2,] 12 32
## [,1] [,2]
## [1,] 0.2000000 0.4285714
## [2,] 0.3333333 0.5000000
## [,1] [,2] [,3] [,4]
## [1,] 5 7 15 21
## [2,] 6 8 18 24
## [3,] 10 14 20 28
## [4,] 12 16 24 32
## [,1] [,2]
## [1,] 6 10
## [2,] 8 12
## [,1] [,2]
## [1,] -4 -4
## [2,] -4 -4
## [,1] [,2]
## [1,] FALSE FALSE
## [2,] FALSE FALSE
e <- rnorm(n = 100)
E <- matrix(e, nrow = 10, ncol = 10)
colnames(E) <- LETTERS[1:10]
rownames(E) <- colnames(E)
E.means <- rowMeans(E)
E.medians <- apply(E, MARGIN = 1, median)
E.mm <- rbind(E.means, E.medians)
E.mm
## A B C D E F
## E.means -0.11550011 -0.5067904 -0.04821721 -0.1134745 0.1953414 0.1434262
## E.medians 0.02414141 -0.6181357 0.06513343 -0.1369052 0.1798268 0.2233098
## G H I J
## E.means 0.2091703 0.5589836 -0.04060708 -0.6131914
## E.medians 0.4382664 0.3811558 0.10249377 -0.4915868
Even though vectors are at the very base of R usage, data frames are central to R as the most common ways to import data into R (read.table()
) will create a data frame. A data frame consists of a set of equally long vectors. As data frames can contain several different data types the command str()
is very useful to run on data frames.
vector1 <- 1:10
vector2 <- letters[1:10]
vector3 <- rnorm(10, sd = 10)
dfr <- data.frame(vector1, vector2, vector3)
str(dfr)
## 'data.frame': 10 obs. of 3 variables:
## $ vector1: int 1 2 3 4 5 6 7 8 9 10
## $ vector2: chr "a" "b" "c" "d" ...
## $ vector3: num 7.71 -5.12 11.15 -5.9 -1.56 ...
In the above example, we can see that the dataframe dfr contains 10 observations for three variables that all have different modes, column 1 is an integer vector, column 2 a vector with factors and column 3 a numeric vector. It is noteworthy that the second column is a factor even though we just gave it a character vector.
data.frame
to find an argument that turns off the factor conversion.
dfr <- data.frame(vector1, vector2, vector3, stringsAsFactors = FALSE)
str(dfr)
## 'data.frame': 10 obs. of 3 variables:
## $ vector1: int 1 2 3 4 5 6 7 8 9 10
## $ vector2: chr "a" "b" "c" "d" ...
## $ vector3: num 7.71 -5.12 11.15 -5.9 -1.56 ...
dfr[,2:3]
dfr[,c("vector2", "vector3")]
## vector2 vector3
## 1 a 7.70998761
## 2 b -5.12207149
## 3 c 11.14677175
## 4 d -5.89800744
## 5 e -1.56250438
## 6 f -13.42565884
## 7 g -1.25597985
## 8 h -6.49789570
## 9 i 11.16377816
## 10 j -0.03869153
## vector2 vector3
## 1 a 7.70998761
## 2 b -5.12207149
## 3 c 11.14677175
## 4 d -5.89800744
## 5 e -1.56250438
## 6 f -13.42565884
## 7 g -1.25597985
## 8 h -6.49789570
## 9 i 11.16377816
## 10 j -0.03869153
dfr[dfr$vector3>0,2]
dfr$vector2[dfr$vector3>0]
## [1] "a" "c" "i"
## [1] "a" "c" "i"
paste(dfr$vector1, dfr$vector2, dfr$vector3, sep = "_")
## [1] "1_a_7.70998760905912" "2_b_-5.12207148765939"
## [3] "3_c_11.1467717492185" "4_d_-5.89800744075488"
## [5] "5_e_-1.5625043752889" "6_f_-13.4256588384262"
## [7] "7_g_-1.25597984776342" "8_h_-6.4978956986819"
## [9] "9_i_11.1637781560534" "10_j_-0.0386915314866101"
mtcars
. How many rows and columns does it have?
dim(mtcars)
ncol(mtcars)
nrow(mtcars)
## [1] 32 11
## [1] 11
## [1] 32
car.names <- sample(row.names(mtcars))
random1 <- rnorm(length(car.names))
random2 <- rnorm(length(car.names))
mtcars2 <- data.frame(car.names, random1, random2)
mtcars2
## car.names random1 random2
## 1 Ferrari Dino 0.36721619 0.71327715
## 2 Ford Pantera L -0.82922971 1.36847963
## 3 Lincoln Continental -0.58050994 -0.98351088
## 4 Merc 240D 0.48924123 0.24957829
## 5 Merc 450SL -0.01421342 0.68847827
## 6 Duster 360 -0.46605361 0.59010607
## 7 Honda Civic 0.03603550 0.39325060
## 8 Fiat X1-9 0.26421055 0.63985520
## 9 Camaro Z28 0.88776082 -0.05705703
## 10 Volvo 142E -0.29774960 -1.04354918
## 11 Datsun 710 -0.24305066 0.23117563
## 12 AMC Javelin -0.46390683 -2.36427999
## 13 Lotus Europa -0.52061463 -0.09502300
## 14 Merc 280C -1.49893845 -0.49771042
## 15 Mazda RX4 Wag -0.77863053 0.81870455
## 16 Merc 280 -0.11942229 -0.25031951
## 17 Valiant -0.79741698 0.66543430
## 18 Fiat 128 2.04539232 -1.20020385
## 19 Hornet Sportabout -0.11844791 1.25903171
## 20 Merc 450SE -1.39106665 0.58758834
## 21 Maserati Bora -0.58092123 -0.13152704
## 22 Pontiac Firebird -0.86297179 1.46270951
## 23 Dodge Challenger 0.46014408 -0.44296864
## 24 Hornet 4 Drive 0.44916747 -0.13609233
## 25 Toyota Corolla -1.48225315 0.02492976
## 26 Mazda RX4 -0.08829514 0.71674433
## 27 Cadillac Fleetwood -1.51397517 0.08046293
## 28 Merc 450SLC -0.08445914 -0.38291002
## 29 Chrysler Imperial -0.07810151 0.09048296
## 30 Porsche 914-2 0.67626809 1.03504207
## 31 Toyota Corona 0.20361499 -1.15704821
## 32 Merc 230 -0.72286941 -0.43780273
mt.merged <- merge(mtcars, mtcars2, by.x = "row.names", by.y = "car.names")
mt.merged
## Row.names mpg cyl disp hp drat wt qsec vs am gear carb
## 1 AMC Javelin 15.2 8 304.0 150 3.15 3.435 17.30 0 0 3 2
## 2 Cadillac Fleetwood 10.4 8 472.0 205 2.93 5.250 17.98 0 0 3 4
## 3 Camaro Z28 13.3 8 350.0 245 3.73 3.840 15.41 0 0 3 4
## 4 Chrysler Imperial 14.7 8 440.0 230 3.23 5.345 17.42 0 0 3 4
## 5 Datsun 710 22.8 4 108.0 93 3.85 2.320 18.61 1 1 4 1
## 6 Dodge Challenger 15.5 8 318.0 150 2.76 3.520 16.87 0 0 3 2
## 7 Duster 360 14.3 8 360.0 245 3.21 3.570 15.84 0 0 3 4
## 8 Ferrari Dino 19.7 6 145.0 175 3.62 2.770 15.50 0 1 5 6
## 9 Fiat 128 32.4 4 78.7 66 4.08 2.200 19.47 1 1 4 1
## 10 Fiat X1-9 27.3 4 79.0 66 4.08 1.935 18.90 1 1 4 1
## 11 Ford Pantera L 15.8 8 351.0 264 4.22 3.170 14.50 0 1 5 4
## 12 Honda Civic 30.4 4 75.7 52 4.93 1.615 18.52 1 1 4 2
## 13 Hornet 4 Drive 21.4 6 258.0 110 3.08 3.215 19.44 1 0 3 1
## 14 Hornet Sportabout 18.7 8 360.0 175 3.15 3.440 17.02 0 0 3 2
## 15 Lincoln Continental 10.4 8 460.0 215 3.00 5.424 17.82 0 0 3 4
## 16 Lotus Europa 30.4 4 95.1 113 3.77 1.513 16.90 1 1 5 2
## 17 Maserati Bora 15.0 8 301.0 335 3.54 3.570 14.60 0 1 5 8
## 18 Mazda RX4 21.0 6 160.0 110 3.90 2.620 16.46 0 1 4 4
## 19 Mazda RX4 Wag 21.0 6 160.0 110 3.90 2.875 17.02 0 1 4 4
## 20 Merc 230 22.8 4 140.8 95 3.92 3.150 22.90 1 0 4 2
## 21 Merc 240D 24.4 4 146.7 62 3.69 3.190 20.00 1 0 4 2
## 22 Merc 280 19.2 6 167.6 123 3.92 3.440 18.30 1 0 4 4
## 23 Merc 280C 17.8 6 167.6 123 3.92 3.440 18.90 1 0 4 4
## 24 Merc 450SE 16.4 8 275.8 180 3.07 4.070 17.40 0 0 3 3
## 25 Merc 450SL 17.3 8 275.8 180 3.07 3.730 17.60 0 0 3 3
## 26 Merc 450SLC 15.2 8 275.8 180 3.07 3.780 18.00 0 0 3 3
## 27 Pontiac Firebird 19.2 8 400.0 175 3.08 3.845 17.05 0 0 3 2
## 28 Porsche 914-2 26.0 4 120.3 91 4.43 2.140 16.70 0 1 5 2
## 29 Toyota Corolla 33.9 4 71.1 65 4.22 1.835 19.90 1 1 4 1
## 30 Toyota Corona 21.5 4 120.1 97 3.70 2.465 20.01 1 0 3 1
## 31 Valiant 18.1 6 225.0 105 2.76 3.460 20.22 1 0 3 1
## 32 Volvo 142E 21.4 4 121.0 109 4.11 2.780 18.60 1 1 4 2
## random1 random2
## 1 -0.46390683 -2.36427999
## 2 -1.51397517 0.08046293
## 3 0.88776082 -0.05705703
## 4 -0.07810151 0.09048296
## 5 -0.24305066 0.23117563
## 6 0.46014408 -0.44296864
## 7 -0.46605361 0.59010607
## 8 0.36721619 0.71327715
## 9 2.04539232 -1.20020385
## 10 0.26421055 0.63985520
## 11 -0.82922971 1.36847963
## 12 0.03603550 0.39325060
## 13 0.44916747 -0.13609233
## 14 -0.11844791 1.25903171
## 15 -0.58050994 -0.98351088
## 16 -0.52061463 -0.09502300
## 17 -0.58092123 -0.13152704
## 18 -0.08829514 0.71674433
## 19 -0.77863053 0.81870455
## 20 -0.72286941 -0.43780273
## 21 0.48924123 0.24957829
## 22 -0.11942229 -0.25031951
## 23 -1.49893845 -0.49771042
## 24 -1.39106665 0.58758834
## 25 -0.01421342 0.68847827
## 26 -0.08445914 -0.38291002
## 27 -0.86297179 1.46270951
## 28 0.67626809 1.03504207
## 29 -1.48225315 0.02492976
## 30 0.20361499 -1.15704821
## 31 -0.79741698 0.66543430
## 32 -0.29774960 -1.04354918
colMeans()
.
colMeans(mtcars2[, c("random1", "random2")])
## random1 random2
## -0.23918895 0.07610401
Try to modify so you get the mean by cylinder instead. Check out the function aggregate()
.
aggregate(mtcars2$random1, by=list(mtcars$cyl), FUN=mean)
## Group.1 x
## 1 4 -0.17119826
## 2 6 -0.04333687
## 3 8 -0.39053625
The last data structure that we will explore are lists, which is a very flexible structure. Lists can combine different data structures and they do not have to be of equal dimensions or have other restrictions. The drawback with a flexible structure is that it requires a bit more work to interact with.
The syntax to create a list is similar to creation of the other data structures in R.
l <- list(1, 2, 3)
As with the data frames the str()
command is very useful for the sometimes fairly complex lists instances.
str(l)
## List of 3
## $ : num 1
## $ : num 2
## $ : num 3
This example containing only numeric vector is not very exciting example given the flexibility a list structure offers so let’s create a more complex example.
vec1 <- letters
vec2 <- 1:4
mat1 <- matrix(1:100, nrow = 5)
df1 <- as.data.frame(cbind(10:1, 91:100))
u.2 <- list(vec1, vec2, mat1, df1, l)
As you can see a list can not only contain other data structures, but can also contain other lists.
Looking at the str()
command reveals much of the details of a list
str(u.2)
## List of 5
## $ : chr [1:26] "a" "b" "c" "d" ...
## $ : int [1:4] 1 2 3 4
## $ : int [1:5, 1:20] 1 2 3 4 5 6 7 8 9 10 ...
## $ :'data.frame': 10 obs. of 2 variables:
## ..$ V1: int [1:10] 10 9 8 7 6 5 4 3 2 1
## ..$ V2: int [1:10] 91 92 93 94 95 96 97 98 99 100
## $ :List of 3
## ..$ : num 1
## ..$ : num 2
## ..$ : num 3
With this more complex object, subsetting is slightly trickier than with more the more homogenous objects we have looked at so far.
To look at the first entry of a list one can use the same syntax as for the simpler structures, but note that this will give you a list of length 1 irrespective of the actual type of data structure found.
u.2[1]
str(u.2[1])
## [[1]]
## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s"
## [20] "t" "u" "v" "w" "x" "y" "z"
##
## List of 1
## $ : chr [1:26] "a" "b" "c" "d" ...
If one instead wants to extract the list entry as the structure that is stored, one needs to “dig” deeper in the object.
u.2[[1]]
str(u.2[[1]])
## [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s"
## [20] "t" "u" "v" "w" "x" "y" "z"
## chr [1:26] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" ...
This means that the syntax to extract a specific value from a data structure stored in a list can be daunting. Below we extract the second column of a dataframe stored at position 4 in the list u.2.
u.2[[4]][,2]
## [1] 91 92 93 94 95 96 97 98 99 100
list.2 <- list(vec1 = c("hi", "ho", "merry", "christmas"),
vec2 = 4:19,
mat1 = matrix(as.character(100:81),nrow = 4))
list.2
## $vec1
## [1] "hi" "ho" "merry" "christmas"
##
## $vec2
## [1] 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
##
## $mat1
## [,1] [,2] [,3] [,4] [,5]
## [1,] "100" "96" "92" "88" "84"
## [2,] "99" "95" "91" "87" "83"
## [3,] "98" "94" "90" "86" "82"
## [4,] "97" "93" "89" "85" "81"
dfr <- data.frame(letters, LETTERS, letters == LETTERS)
Add this dataframe to the list created above.
list.2[[4]] <- dfr
list.2[-2]
## $vec1
## [1] "hi" "ho" "merry" "christmas"
##
## $mat1
## [,1] [,2] [,3] [,4] [,5]
## [1,] "100" "96" "92" "88" "84"
## [2,] "99" "95" "91" "87" "83"
## [3,] "98" "94" "90" "86" "82"
## [4,] "97" "93" "89" "85" "81"
##
## [[3]]
## letters LETTERS letters....LETTERS
## 1 a A FALSE
## 2 b B FALSE
## 3 c C FALSE
## 4 d D FALSE
## 5 e E FALSE
## 6 f F FALSE
## 7 g G FALSE
## 8 h H FALSE
## 9 i I FALSE
## 10 j J FALSE
## 11 k K FALSE
## 12 l L FALSE
## 13 m M FALSE
## 14 n N FALSE
## 15 o O FALSE
## 16 p P FALSE
## 17 q Q FALSE
## 18 r R FALSE
## 19 s S FALSE
## 20 t T FALSE
## 21 u U FALSE
## 22 v V FALSE
## 23 w W FALSE
## 24 x X FALSE
## 25 y Y FALSE
## 26 z Z FALSE
vec1 <- rnorm(1000)
list.a <- split(vec1, 1:20)
length(list.a)
lapply(list.a, FUN = "length")
## [1] 20
## $`1`
## [1] 50
##
## $`2`
## [1] 50
##
## $`3`
## [1] 50
##
## $`4`
## [1] 50
##
## $`5`
## [1] 50
##
## $`6`
## [1] 50
##
## $`7`
## [1] 50
##
## $`8`
## [1] 50
##
## $`9`
## [1] 50
##
## $`10`
## [1] 50
##
## $`11`
## [1] 50
##
## $`12`
## [1] 50
##
## $`13`
## [1] 50
##
## $`14`
## [1] 50
##
## $`15`
## [1] 50
##
## $`16`
## [1] 50
##
## $`17`
## [1] 50
##
## $`18`
## [1] 50
##
## $`19`
## [1] 50
##
## $`20`
## [1] 50
lapply()
and sapply
are and use both of them with the function summary on your newly created list. What are the pros and cons of the two approaches to calculate the same summary statistics?
lapply(X = list.a, FUN = "summary")
sapply(X = list.a, FUN = "summary")
## $`1`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.71924 -0.97835 0.03254 -0.11514 0.44973 2.02492
##
## $`2`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.3214 -0.8233 -0.1145 -0.1273 0.2078 3.9647
##
## $`3`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -1.83653 -0.64321 -0.03512 0.11420 0.83545 2.46683
##
## $`4`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.17924 -0.64557 -0.01567 -0.03324 0.58338 1.77261
##
## $`5`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.33334 -0.89320 0.10472 -0.03815 0.82084 2.69637
##
## $`6`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.9574 -0.3046 0.2486 0.1684 0.7656 1.9555
##
## $`7`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.06369 -0.54243 -0.09921 0.15430 1.05176 2.52721
##
## $`8`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.3294 -1.0265 -0.2318 -0.1972 0.5735 1.6981
##
## $`9`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.30420 -0.42286 0.03798 0.16058 0.72053 2.45348
##
## $`10`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -3.32602 -0.52843 0.06080 0.01252 0.56944 2.51121
##
## $`11`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.4597 -0.5137 0.2790 0.1835 0.7468 2.3461
##
## $`12`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -1.71373 -0.74729 0.03508 0.01548 0.65403 2.96912
##
## $`13`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -3.2028 -0.8624 -0.2680 -0.1958 0.5111 2.9846
##
## $`14`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -1.55497 -0.55051 0.04278 0.03782 0.51830 1.87938
##
## $`15`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -3.0342 -0.8818 -0.1099 -0.0443 1.0388 1.8125
##
## $`16`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.64386 -0.33219 0.08861 0.13883 0.72843 2.15964
##
## $`17`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -1.9438 -0.9390 -0.3693 -0.3129 0.2617 2.0641
##
## $`18`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.56980 -0.62099 -0.07501 -0.11849 0.46765 2.35095
##
## $`19`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -1.77591 -0.59162 0.02874 0.04303 0.42589 2.90489
##
## $`20`
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2.5060 -0.3640 0.2587 0.1960 0.8934 2.1682
##
## 1 2 3 4 5 6
## Min. -2.71923717 -2.3214348 -1.83652920 -2.17923815 -2.3333403 -2.9573658
## 1st Qu. -0.97835350 -0.8232765 -0.64320627 -0.64556691 -0.8931961 -0.3045915
## Median 0.03253697 -0.1145149 -0.03511581 -0.01567166 0.1047170 0.2485958
## Mean -0.11513866 -0.1272769 0.11419532 -0.03323565 -0.0381540 0.1683773
## 3rd Qu. 0.44973157 0.2078239 0.83544610 0.58338119 0.8208397 0.7655758
## Max. 2.02491570 3.9646897 2.46683155 1.77261469 2.6963675 1.9555347
## 7 8 9 10 11 12
## Min. -2.06368780 -2.3293541 -2.30420310 -3.32601964 -2.4597242 -1.71373392
## 1st Qu. -0.54242888 -1.0264710 -0.42285543 -0.52843119 -0.5136558 -0.74728984
## Median -0.09921021 -0.2317575 0.03797861 0.06079946 0.2789667 0.03507972
## Mean 0.15430397 -0.1972380 0.16058339 0.01251492 0.1834532 0.01548051
## 3rd Qu. 1.05176026 0.5734994 0.72052924 0.56943945 0.7467859 0.65402572
## Max. 2.52721057 1.6981075 2.45348002 2.51120818 2.3461468 2.96912430
## 13 14 15 16 17 18
## Min. -3.2028290 -1.55497432 -3.03420765 -2.64386440 -1.9438448 -2.56979700
## 1st Qu. -0.8623625 -0.55051031 -0.88183133 -0.33219205 -0.9390457 -0.62099206
## Median -0.2679851 0.04278030 -0.10994795 0.08860904 -0.3693254 -0.07500722
## Mean -0.1957629 0.03782354 -0.04430283 0.13883314 -0.3129063 -0.11848681
## 3rd Qu. 0.5111367 0.51829599 1.03876056 0.72842593 0.2617418 0.46765040
## Max. 2.9846166 1.87937852 1.81252194 2.15963804 2.0641339 2.35094791
## 19 20
## Min. -1.77591139 -2.5060029
## 1st Qu. -0.59161952 -0.3639503
## Median 0.02873505 0.2586962
## Mean 0.04302599 0.1959882
## 3rd Qu. 0.42589399 0.8934491
## Max. 2.90489313 2.1682063