R Binder
R Binder
W. N. Venables, D. M. Smith
and the R Development Core Team
Copyright c 1990 W. N. Venables
Copyright c 1992 W. N. Venables & D. M. Smith
Copyright c 1997 R. Gentleman & R. Ihaka
Copyright c 1997, 1998 M. Maechler
Copyright c 1999–2006 R Development Core Team
Permission is granted to make and distribute verbatim copies of this manual provided the copy-
right notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under the condi-
tions for verbatim copying, provided that the entire resulting derived work is distributed under
the terms of a permission notice identical to this one.
Permission is granted to copy and distribute translations of this manual into another language,
under the above conditions for modified versions, except that this permission notice may be
stated in a translation approved by the R Development Core Team.
ISBN 3-900051-12-7
i
Table of Contents
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
8 Probability distributions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
8.1 R as a set of statistical tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
8.2 Examining the distribution of a set of data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
8.3 One- and two-sample tests . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
11 Statistical models in R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
11.1 Defining statistical models; formulae . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
11.1.1 Contrasts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
11.2 Linear models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
11.3 Generic functions for extracting model information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
11.4 Analysis of variance and model comparison . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
11.4.1 ANOVA tables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
11.5 Updating fitted models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
11.6 Generalized linear models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
11.6.1 Families . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
11.6.2 The glm() function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
11.7 Nonlinear least squares and maximum likelihood models . . . . . . . . . . . . . . . . . . . . . . . . 58
11.7.1 Least squares . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
11.7.2 Maximum likelihood . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
11.8 Some non-standard models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
12 Graphical procedures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
12.1 High-level plotting commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
12.1.1 The plot() function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
12.1.2 Displaying multivariate data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
12.1.3 Display graphics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
12.1.4 Arguments to high-level plotting functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
12.2 Low-level plotting commands . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
12.2.1 Mathematical annotation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
12.2.2 Hershey vector fonts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
12.3 Interacting with graphics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
12.4 Using graphics parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
12.4.1 Permanent changes: The par() function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
12.4.2 Temporary changes: Arguments to graphics functions. . . . . . . . . . . . . . . . . . . . . . 68
12.5 Graphics parameters list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68
12.5.1 Graphical elements. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69
12.5.2 Axes and tick marks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
12.5.3 Figure margins . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70
12.5.4 Multiple figure environment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
12.6 Device drivers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
12.6.1 PostScript diagrams for typeset documents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
12.6.2 Multiple graphics devices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
12.7 Dynamic graphics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
13 Packages. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
13.1 Standard packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
13.2 Contributed packages and CRAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
13.3 Namespaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
Appendix B Invoking R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
B.1 Invoking R from the command line . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
B.2 Invoking R under Windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
B.3 Invoking R under Mac OS X . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
B.4 Scripting with R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
iv
Appendix F References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94
Preface 1
Preface
This introduction to R is derived from an original set of notes describing the S and S-Plus
environments written by Bill Venables and David M. Smith (Insightful Corporation). We have
made a number of small changes to reflect differences between the R and S programs, and
expanded some of the material.
We would like to extend warm thanks to Bill Venables (and David Smith) for granting
permission to distribute this modified version of the notes in this way, and for being a supporter
of R from way back.
Comments and corrections are always welcome. Please address email correspondence to
[email protected].
There is an important difference in philosophy between S (and hence R) and the other
main statistical systems. In S a statistical analysis is normally done as a series of steps, with
intermediate results being stored in objects. Thus whereas SAS and SPSS will give copious
output from a regression or discriminant analysis, R will give minimal output and store the
results in a fit object for subsequent interrogation by further R functions.
be put almost2 anywhere, starting with a hashmark (‘#’), everything to the end of the line is a
comment.
If a command is not complete at the end of a line, R will give a different prompt, by default
+
on second and subsequent lines and continue to read input until the command is syntactically
complete. This prompt may be changed by the user. We will generally omit the continuation
prompt and indicate continuation by simple indenting.
Command lines entered at the console are limited3 to about 1024 bytes (not characters).
5
The leading “dot” in this file name makes it invisible in normal file listings in UNIX.
Chapter 2: Simple manipulations; numbers and vectors 7
and so on, all have their usual meaning. max and min select the largest and smallest elements of a
vector respectively. range is a function whose value is a vector of length two, namely c(min(x),
max(x)). length(x) is the number of elements in x, sum(x) gives the total of the elements in
x, and prod(x) their product.
Two statistical functions are mean(x) which calculates the sample mean, which is the same
as sum(x)/length(x), and var(x) which gives
sum((x-mean(x))^2)/(length(x)-1)
or sample variance. If the argument to var() is an n-by-p matrix the value is a p-by-p sample
covariance matrix got by regarding the rows as independent p-variate sample vectors.
sort(x) returns a vector of the same size as x with the elements arranged in increasing order;
however there are other more flexible sorting facilities available (see order() or sort.list()
which produce a permutation to do the sorting).
Note that max and min select the largest and smallest values in their arguments, even if they
are given several vectors. The parallel maximum and minimum functions pmax and pmin return
a vector (of length equal to their longest argument) that contains in each element the largest
(smallest) element in that position in any of the input vectors.
For most purposes the user will not be concerned if the “numbers” in a numeric vector
are integers, reals or even complex. Internally calculations are done as double precision real
numbers, or double precision complex numbers if the input data are complex.
To work with complex numbers, supply an explicit complex part. Thus
sqrt(-17)
will give NaN and a warning, but
sqrt(-17+0i)
will do the computations as complex numbers.
The fifth parameter may be named along=vector , which if used must be the only parameter,
and creates a sequence 1, 2, ..., length(vector ), or the empty sequence if the vector is
empty (as it can be).
A related function is rep() which can be used for replicating an object in various complicated
ways. The simplest form is
> s5 <- rep(x, times=5)
which will put five copies of x end-to-end in s5. Another useful version is
> s6 <- rep(x, each=5)
which repeats each element of x five times before moving on to the next.
2. A vector of positive integral quantities. In this case the values in the index vector must lie
in the set {1, 2, . . . , length(x)}. The corresponding elements of the vector are selected
and concatenated, in that order, in the result. The index vector can be of any length and the
result is of the same length as the index vector. For example x[6] is the sixth component
of x and
> x[1:10]
selects the first 10 elements of x (assuming length(x) is not less than 10). Also
> c("x","y")[rep(c(1,2,2,1), times=4)]
(an admittedly unlikely thing to do) produces a character vector of length 16 consisting of
"x", "y", "y", "x" repeated four times.
3. A vector of negative integral quantities. Such an index vector specifies the values to be
excluded rather than included. Thus
> y <- x[-(1:5)]
gives y all but the first five elements of x.
4. A vector of character strings. This possibility only applies where an object has a names
attribute to identify its components. In this case a sub-vector of the names vector may be
used in the same way as the positive integral labels in item 2 further above.
> fruit <- c(5, 10, 1, 20)
> names(fruit) <- c("orange", "banana", "apple", "peach")
> lunch <- fruit[c("apple","orange")]
The advantage is that alphanumeric names are often easier to remember than numeric
indices. This option is particularly useful in connection with data frames, as we shall see
later.
An indexed expression can also appear on the receiving end of an assignment, in which case
the assignment operation is performed only on those elements of the vector. The expression
must be of the form vector[index_vector ] as having an arbitrary expression in place of the
vector name does not make much sense here.
The vector assigned must match the length of the index vector, and in the case of a logical
index vector it must again be the same length as the vector it is indexing.
For example
> x[is.na(x)] <- 0
replaces any missing values in x by zeros and
> y[y < 0] <- -y[y < 0]
has the same effect as
> y <- abs(y)
• data frames are matrix-like structures, in which the columns can be of different types. Think
of data frames as ‘data matrices’ with one row per observational unit but with (possibly)
both numerical and categorical variables. Many experiments are best described by data
frames: the treatments are categorical but the response is numeric. See Section 6.3 [Data
frames], page 27.
• functions are themselves objects in R which can be stored in the project’s workspace. This
provides a simple and convenient way to extend R. See Chapter 10 [Writing your own
functions], page 42.
Chapter 3: Objects, their modes and attributes 13
> winter
will print it in data frame form, which is rather like a matrix, whereas
> unclass(winter)
will print it as an ordinary list. Only in rather special situations do you need to use this facility,
but one is when you are learning to come to terms with the idea of class and generic functions.
Generic functions and classes will be discussed further in Section 10.9 [Object orientation],
page 48, but only briefly.
Chapter 4: Ordered and unordered factors 16
as if they were separate vector structures. The result is a structure of the same length as the
levels attribute of the factor containing the results. The reader should consult the help document
for more details.
Suppose further we needed to calculate the standard errors of the state income means. To do
this we need to write an R function to calculate the standard error for any given vector. Since
there is an builtin function var() to calculate the sample variance, such a function is a very
simple one liner, specified by the assignment:
> stderr <- function(x) sqrt(var(x)/length(x))
(Writing functions will be considered later in Chapter 10 [Writing your own functions], page 42,
and in this case was unnecessary as R also has a builtin function sd().) After this assignment,
the standard errors are calculated by
> incster <- tapply(incomes, statef, stderr)
and the values calculated are then
> incster
act nsw nt qld sa tas vic wa
1.5 4.3102 4.5 4.1061 2.7386 0.5 5.244 2.6575
As an exercise you may care to find the usual 95% confidence limits for the state mean
incomes. To do this you could use tapply() once more with the length() function to find
the sample sizes, and the qt() function to find the percentage points of the appropriate t-
distributions. (You could also investigate R’s facilities for t-tests.)
The function tapply() can also be used to handle more complicated indexing of a vector
by multiple categories. For example, we might wish to split the tax accountants by both state
and sex. However in this simple instance (just one factor) what happens can be thought of as
follows. The values in the vector are collected into groups corresponding to the distinct entries
in the factor. The function is then applied to each of these groups individually. The value is a
vector of function results, labelled by the levels attribute of the factor.
The combination of a vector and a labelling factor is an example of what is sometimes called
a ragged array, since the subclass sizes are possibly irregular. When the subclass sizes are all
the same the indexing may be done implicitly and much more efficiently, as we see in the next
section.
5.1 Arrays
An array can be considered as a multiply subscripted collection of data entries, for example
numeric. R allows simple facilities for creating and handling arrays, and in particular the
special case of matrices.
A dimension vector is a vector of non-negative integers. If its length is k then the array is
k-dimensional, e.g. a matrix is a 2-dimensional array. The dimensions are indexed from one up
to the values given in the dimension vector.
A vector can be used by R as an array only if it has a dimension vector as its dim attribute.
Suppose, for example, z is a vector of 1500 elements. The assignment
> dim(z) <- c(3,5,100)
gives it the dim attribute that allows it to be treated as a 3 by 5 by 100 array.
Other functions such as matrix() and array() are available for simpler and more natural
looking assignments, as we shall see in Section 5.4 [The array() function], page 20.
The values in the data vector give the values in the array in the same order as they would
occur in FORTRAN, that is “column major order,” with the first subscript moving fastest and
the last subscript slowest.
For example if the dimension vector for an array, say a, is c(3,4,2) then there are 3 × 4 ×
2 = 24 entries in a and the data vector holds them in the order a[1,1,1], a[2,1,1], ...,
a[2,4,2], a[3,4,2].
Arrays can be one-dimensional: such arrays are usually treated in the same way as vectors
(including when printing), but the exceptions can cause confusion.
6.1 Lists
An R list is an object consisting of an ordered collection of objects known as its components.
There is no particular need for the components to be of the same mode or type, and, for
example, a list could consist of a numeric vector, a logical value, a matrix, a complex vector, a
character array, a function, and so on. Here is a simple example of how to make a list:
> Lst <- list(name="Fred", wife="Mary", no.children=3,
child.ages=c(4,7,9))
Components are always numbered and may always be referred to as such. Thus if Lst is
the name of a list with four components, these may be individually referred to as Lst[[1]],
Lst[[2]], Lst[[3]] and Lst[[4]]. If, further, Lst[[4]] is a vector subscripted array then
Lst[[4]][1] is its first entry.
If Lst is a list, then the function length(Lst) gives the number of (top level) components
it has.
Components of lists may also be named, and in this case the component may be referred to
either by giving the component name as a character string in place of the number in double
square brackets, or, more conveniently, by giving an expression of the form
> name $component_name
for the same thing.
This is a very useful convention as it makes it easier to get the right component if you forget
the number.
So in the simple example given above:
Lst$name is the same as Lst[[1]] and is the string "Fred",
Lst$wife is the same as Lst[[2]] and is the string "Mary",
Lst$child.ages[1] is the same as Lst[[4]][1] and is the number 4.
Additionally, one can also use the names of the list components in double square brackets,
i.e., Lst[["name"]] is the same as Lst$name. This is especially useful, when the name of the
component to be extracted is stored in another variable as in
> x <- "name"; Lst[[x]]
It is very important to distinguish Lst[[1]] from Lst[1]. ‘[[...]]’ is the operator used
to select a single element, whereas ‘[...]’ is a general subscripting operator. Thus the former
is the first object in the list Lst, and if it is a named list the name is not included. The latter
is a sublist of the list Lst consisting of the first entry only. If it is a named list, the names are
transferred to the sublist.
The names of components may be abbreviated down to the minimum number of letters needed
to identify them uniquely. Thus Lst$coefficients may be minimally specified as Lst$coe and
Lst$covariance as Lst$cov.
The vector of names is in fact simply an attribute of the list like any other and may be handled
as such. Other structures besides lists may, of course, similarly be given a names attribute also.
The attach() function takes a ‘database’ such as a list or data frame as its argument. Thus
suppose lentils is a data frame with three variables lentils$u, lentils$v, lentils$w. The
attach
> attach(lentils)
places the data frame in the search path at position 2, and provided there are no variables u, v
or w in position 1, u, v and w are available as variables from the data frame in their own right.
At this point an assignment such as
> u <- v+w
does not replace the component u of the data frame, but rather masks it with another variable
u in the working directory at position 1 on the search path. To make a permanent change to
the data frame itself, the simplest way is to resort once again to the $ notation:
> lentils$u <- v+w
However the new value of component u is not visible until the data frame is detached and
attached again.
To detach a data frame, use the function
> detach()
More precisely, this statement detaches from the search path the entity currently at
position 2. Thus in the present context the variables u, v and w would be no longer visible,
except under the list notation as lentils$u and so on. Entities at positions greater than 2
on the search path can be detached by giving their number to detach, but it is much safer to
always use a name, for example by detach(lentils) or detach("lentils")
Note: In R lists and data frames can only be attached at position 2 or above, and
what is attached is a copy of the original object. You can alter the attached values
via assign, but the original list or data frame is unchanged.
1
See the on-line help for autoload for the meaning of the second term.
Chapter 7: Reading data from files 30
By default numeric items (except row labels) are read as numeric variables and non-numeric
variables, such as Cent.heat in the example, as factors. This can be changed if necessary.
The function read.table() can then be used to read the data frame directly
> HousePrice <- read.table("houses.data")
Often you will want to omit including the row labels directly and use the default labels. In
this case the file may omit the row label column as in the following.
Input file form without row labels:
1
Under UNIX, the utilities Sed or Awk can be used.
Chapter 7: Reading data from files 31
8 Probability distributions
> attach(faithful)
> summary(eruptions)
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.600 2.163 4.000 3.488 4.454 5.100
> fivenum(eruptions)
[1] 1.6000 2.1585 4.0000 4.4585 5.1000
> stem(eruptions)
16 | 070355555588
18 | 000022233333335577777777888822335777888
20 | 00002223378800035778
22 | 0002335578023578
24 | 00228
26 | 23
28 | 080
30 | 7
32 | 2337
34 | 250077
36 | 0000823577
38 | 2333335582225577
40 | 0000003357788888002233555577778
42 | 03335555778800233333555577778
44 | 02222335557780000000023333357778888
46 | 0000233357700000023578
48 | 00000022335800333
50 | 0370
A stem-and-leaf plot is like a histogram, and R has a function hist to plot histograms.
> hist(eruptions)
## make the bins smaller, make a plot of density
> hist(eruptions, seq(1.6, 5.2, 0.2), prob=TRUE)
> lines(density(eruptions, bw=0.1))
> rug(eruptions) # show the actual data points
More elegant density plots can be made by density, and we added a line produced by
density in this example. The bandwidth bw was chosen by trial-and-error as the default gives
Chapter 8: Probability distributions 35
too much smoothing (it usually does for “interesting” densities). (Better automated methods of
bandwidth choice are available, and in this example bw = "SJ" gives a good result.)
Histogram of eruptions
0.7
0.6
0.5
Relative Frequency
0.4
0.3
0.2
0.1
0.0
eruptions
We can plot the empirical cumulative distribution function by using the function ecdf.
> plot(ecdf(eruptions), do.points=FALSE, verticals=TRUE)
This distribution is obviously far from any standard distribution. How about the right-hand
mode, say eruptions of longer than 3 minutes? Let us fit a normal distribution and overlay the
fitted CDF.
> long <- eruptions[eruptions > 3]
> plot(ecdf(long), do.points=FALSE, verticals=TRUE)
> x <- seq(3, 5.4, 0.01)
> lines(x, pnorm(x, mean=mean(long), sd=sqrt(var(long))), lty=3)
ecdf(long)
1.0
0.8
0.6
Fn(x)
0.4
0.2
0.0
which shows a reasonable fit but a shorter right tail than one would expect from a normal
distribution. Let us compare this with some simulated data from a t distribution
4.0
3.5
3.0
−2 −1 0 1 2
Theoretical Quantiles
x <- rt(250, df = 5)
qqnorm(x); qqline(x)
which will usually (if it is a random sample) show longer tails than expected for a normal. We
can make a Q-Q plot against the generating distribution by
qqplot(qt(ppoints(250), df = 5), x, xlab = "Q-Q plot for t dsn")
qqline(x)
Finally, we might want a more formal test of agreement with normality (or not). R provides
the Shapiro-Wilk test
> shapiro.test(long)
data: long
W = 0.9793, p-value = 0.01052
and the Kolmogorov-Smirnov test
> ks.test(long, "pnorm", mean = mean(long), sd = sqrt(var(long)))
data: long
D = 0.0661, p-value = 0.4284
alternative hypothesis: two.sided
(Note that the distribution theory is not valid here as we have estimated the parameters of the
normal distribution from the same sample.)
B <- scan()
80.02 79.94 79.98 79.97 79.97 80.03 79.95 79.97
boxplot(A, B)
which indicates that the first group tends to give higher results than the second.
80.04
80.02
80.00
79.98
79.96
79.94
1 2
To test for the equality of the means of the two examples, we can use an unpaired t-test by
> t.test(A, B)
data: A and B
t = 3.2499, df = 12.027, p-value = 0.00694
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.01385526 0.07018320
sample estimates:
mean of x mean of y
80.02077 79.97875
which does indicate a significant difference, assuming normality. By default the R function does
not assume equality of variances in the two samples (in contrast to the similar S-Plus t.test
function). We can use the F test to test for equality in the variances, provided that the two
samples are from normal populations.
> var.test(A, B)
data: A and B
F = 0.5837, num df = 12, denom df = 7, p-value = 0.3938
alternative hypothesis: true ratio of variances is not equal to 1
95 percent confidence interval:
0.1251097 2.1052687
sample estimates:
ratio of variances
0.5837405
which shows no evidence of a significant difference, and so we can use the classical t-test that
assumes equality of the variances.
> t.test(A, B, var.equal=TRUE)
data: A and B
t = 3.4722, df = 19, p-value = 0.002551
alternative hypothesis: true difference in means is not equal to 0
95 percent confidence interval:
0.01669058 0.06734788
sample estimates:
mean of x mean of y
80.02077 79.97875
All these tests assume normality of the two samples. The two-sample Wilcoxon (or Mann-
Whitney) test only assumes a common continuous distribution under the null hypothesis.
> wilcox.test(A, B)
data: A and B
W = 89, p-value = 0.007497
alternative hypothesis: true location shift is not equal to 0
Warning message:
Cannot compute exact p-value with ties in: wilcox.test(A, B)
Note the warning: there are several ties in each sample, which suggests strongly that these data
are from a discrete distribution (probably due to rounding).
There are several ways to compare graphically the two samples. We have already seen a pair
of boxplots. The following
> plot(ecdf(A), do.points=FALSE, verticals=TRUE, xlim=range(A, B))
> plot(ecdf(B), do.points=FALSE, verticals=TRUE, add=TRUE)
will show the two empirical CDFs, and qqplot will perform a Q-Q plot of the two samples. The
Kolmogorov-Smirnov test is of the maximal vertical distance between the two ecdf’s, assuming
a common continuous distribution:
> ks.test(A, B)
data: A and B
D = 0.5962, p-value = 0.05919
Chapter 8: Probability distributions 39
Warning message:
cannot compute correct p-values with ties in: ks.test(A, B)
Chapter 9: Grouping, loops and conditional execution 40
Warning: for() loops are used in R code much less often than in compiled languages.
Code that takes a ‘whole object’ view is likely to be both clearer and faster in R.
Other looping facilities include the
> repeat expr
statement and the
> while (condition ) expr
statement.
The break statement can be used to terminate any loop, possibly abnormally. This is the
only way to terminate repeat loops.
The next statement can be used to discontinue one particular cycle and skip to the “next”.
Control statements are most often used in connection with functions which are discussed in
Chapter 10 [Writing your own functions], page 42, and where more examples will emerge.
Chapter 10: Writing your own functions 42
The classical R function lsfit() does this job quite well, and more1 . It in turn uses the
functions qr() and qr.coef() in the slightly counterintuitive way above to do this part of the
calculation. Hence there is probably some value in having just this part isolated in a simple to
use function if it is going to be in frequent use. If so, we may wish to make it a matrix binary
operator for even more convenient use.
E = Iv − R−1/2 N 0 K −1 N R−1/2 = Iv − A0 A,
where A = K −1/2 N R−1/2 . One way to write the function is given below.
> bdeff <- function(blocks, varieties) {
blocks <- as.factor(blocks) # minor safety move
b <- length(levels(blocks))
varieties <- as.factor(varieties) # minor safety move
v <- length(levels(varieties))
K <- as.vector(table(blocks)) # remove dim attr
R <- as.vector(table(varieties)) # remove dim attr
N <- table(blocks, varieties)
A <- 1/sqrt(K) * N * rep(1/sqrt(R), rep(b, v))
sv <- svd(A)
list(eff=1 - sv$d^2, blockcv=sv$u, varietycv=sv$v)
Chapter 10: Writing your own functions 45
}
It is numerically slightly better to work with the singular value decomposition on this occasion
rather than the eigenvalue routines.
The result of the function is a list giving not only the efficiency factors as the first component,
but also the block and variety canonical contrasts, since sometimes these give additional useful
qualitative information.
h <- (b - a)/4
fd <- f(d)
a1 <- h * (fa + fd)
a2 <- h * (fd + fb)
if(abs(a0 - a1 - a2) < eps || lim == 0)
return(a1 + a2)
else {
return(fun(f, a, d, fa, fd, a1, eps, lim - 1, fun) +
fun(f, d, b, fd, fb, a2, eps, lim - 1, fun))
}
}
fa <- f(a)
fb <- f(b)
a0 <- ((fa + fb) * (b - a))/2
fun1(f, a, b, fa, fb, a0, eps, lim, fun1)
}
10.7 Scope
The discussion in this section is somewhat more technical than in other parts of this document.
However, it details one of the major differences between S-Plus and R.
The symbols which occur in the body of a function can be divided into three classes; formal
parameters, local variables and free variables. The formal parameters of a function are those
occurring in the argument list of the function. Their values are determined by the process of
binding the actual function arguments to the formal parameters. Local variables are those whose
values are determined by the evaluation of expressions in the body of the functions. Variables
which are not formal parameters or local variables are called free variables. Free variables become
local variables if they are assigned to. Consider the following function definition.
f <- function(x) {
y <- 2*x
print(x)
print(y)
print(z)
}
In this function, x is a formal parameter, y is a local variable and z is a free variable.
In R the free variable bindings are resolved by first looking in the environment in which the
function was created. This is called lexical scope. First we define a function called cube.
cube <- function(n) {
sq <- function() n*n
n*sq()
}
The variable n in the function sq is not an argument to that function. Therefore it is a free
variable and the scoping rules must be used to ascertain the value that is to be associated with
it. Under static scope (S-Plus) the value is that associated with a global variable named n.
Under lexical scope (R) it is the parameter to the function cube since that is the active binding
for the variable n at the time the function sq was defined. The difference between evaluation
in R and evaluation in S-Plus is that S-Plus looks for a global variable called n while R first
looks for a variable called n in the environment created when cube was invoked.
## first evaluation in S
S> cube(2)
Error in sq(): Object "n" not found
Chapter 10: Writing your own functions 47
Dumped
S> n <- 3
S> cube(2)
[1] 18
## then the same function evaluated in R
R> cube(2)
[1] 8
Lexical scope can also be used to give functions mutable state. In the following example
we show how R can be used to mimic a bank account. A functioning bank account needs to
have a balance or total, a function for making withdrawals, a function for making deposits and
a function for stating the current balance. We achieve this by creating the three functions
within account and then returning a list containing them. When account is invoked it takes
a numerical argument total and returns a list containing the three functions. Because these
functions are defined in an environment which contains total, they will have access to its value.
The special assignment operator, <<-, is used to change the value associated with total.
This operator looks back in enclosing environments for an environment that contains the symbol
total and when it finds such an environment it replaces the value, in that environment, with
the value of right hand side. If the global or top-level environment is reached without finding
the symbol total then that variable is created and assigned to there. For most users <<- creates
a global variable and assigns the value of the right hand side to it2 . Only when <<- has been
used in a function that was returned as the value of another function will the special behavior
described here occur.
open.account <- function(total) {
list(
deposit = function(amount) {
if(amount <= 0)
stop("Deposits must be positive!\n")
total <<- total + amount
cat(amount, "deposited. Your balance is", total, "\n\n")
},
withdraw = function(amount) {
if(amount > total)
stop("You don’t have that much money!\n")
total <<- total - amount
cat(amount, "withdrawn. Your balance is", total, "\n\n")
},
balance = function() {
cat("Your balance is", total, "\n\n")
}
)
}
ross$withdraw(30)
ross$balance()
robert$balance()
2
In some sense this mimics the behavior in S-Plus since in S-Plus this operator always creates or assigns to
a global variable.
Chapter 10: Writing your own functions 48
ross$deposit(50)
ross$balance()
ross$withdraw(500)
for displaying objects graphically, summary() for summarizing analyses of various types, and
anova() for comparing statistical models.
The number of generic functions that can treat a class in a specific way can be quite large.
For example, the functions that can accommodate in some fashion objects of class "data.frame"
include
[ [[<- any as.matrix
[<- mean plot summary
A currently complete list can be got by using the methods() function:
> methods(class="data.frame")
Conversely the number of classes a generic function can handle can also be quite large.
For example the plot() function has a default method and variants for objects of classes
"data.frame", "density", "factor", and more. A complete list can be got again by using
the methods() function:
> methods(plot)
For many generic functions the function body is quite short, for example
> coef
function (object, ...)
UseMethod("coef")
The presence of UseMethod indicates this is a generic function. To see what methods are available
we can use methods()
> methods(coef)
[1] coef.aov* coef.Arima* coef.default* coef.listof*
[5] coef.nls* coef.summary.nls*
11 Statistical models in R
This section presumes the reader has some familiarity with statistical methodology, in particular
with regression analysis and the analysis of variance. Later we make some rather more ambitious
presumptions, namely that something is known about generalized linear models and nonlinear
regression.
The requirements for fitting statistical models are sufficiently well defined to make it possible
to construct general tools that apply in a broad spectrum of problems.
R provides an interlocking suite of facilities that make fitting statistical models very simple.
As we mention in the introduction, the basic output is minimal, and one needs to ask for the
details by calling extractor functions.
y = Xβ + e
where the y is the response vector, X is the model matrix or design matrix and has columns
x0 , x1 , . . . , xp , the determining variables. Very often x0 will be a column of ones defining an
intercept term.
Examples
Before giving a formal specification, a few examples may usefully set the picture.
Suppose y, x, x0, x1, x2, . . . are numeric variables, X is a matrix and A, B, C, . . . are factors.
The following formulae on the left side below specify statistical models as described on the right.
y~x
y~1+x Both imply the same simple linear regression model of y on x. The first has an
implicit intercept term, and the second an explicit one.
y~0+x
y ~ -1 + x
y ~ x - 1 Simple linear regression of y on x through the origin (that is, without an intercept
term).
log(y) ~ x1 + x2
Multiple regression of the transformed variable, log(y), on x1 and x2 (with an
implicit intercept term).
y ~ poly(x,2)
y ~ 1 + x + I(x^2)
Polynomial regression of y on x of degree 2. The first form uses orthogonal polyno-
mials, and the second uses explicit powers, as basis.
y ~ X + poly(x,2)
Multiple regression y with model matrix consisting of the matrix X as well as
polynomial terms in x to degree 2.
Chapter 11: Statistical models in R 51
11.1.1 Contrasts
We need at least some idea how the model formulae specify the columns of the model matrix.
This is easy if we have continuous variables, as each provides one column of the model matrix
(and the intercept will provide a column of ones if included in the model).
What about a k-level factor A? The answer differs for unordered and ordered factors. For
unordered factors k − 1 columns are generated for the indicators of the second, . . . , kth levels
of the factor. (Thus the implicit parameterization is to contrast the response at each level with
that at the first.) For ordered factors the k − 1 columns are the orthogonal polynomials on
1, . . . , k, omitting the constant term.
Although the answer is already complicated, it is not the whole story. First, if the intercept
is omitted in a model that contains a factor term, the first such term is encoded into k columns
giving the indicators for all the levels. Second, the whole behavior can be changed by the
options setting for contrasts. The default setting in R is
options(contrasts = c("contr.treatment", "contr.poly"))
The main reason for mentioning this is that R and S have different defaults for unordered factors,
S using Helmert contrasts. So if you need to compare your results to those of a textbook or
paper which used S-Plus, you will need to set
options(contrasts = c("contr.helmert", "contr.poly"))
This is a deliberate difference, as treatment contrasts (R’s default) are thought easier for new-
comers to interpret.
We have still not finished, as the contrast scheme to be used can be set for each term in the
model using the functions contrasts and C.
We have not yet considered interaction terms: these generate the products of the columns
introduced for their component terms.
Although the details are complicated, model formulae in R will normally generate the models
that an expert statistician would expect, provided that marginality is preserved. Fitting, for
example, a model with an interaction but not the corresponding main effects will in general lead
to surprising results, and is for experts only.
Chapter 11: Statistical models in R 53
summary(object )
Print a comprehensive summary of the results of the regression analysis.
vcov(object )
Returns the variance-covariance matrix of the main parameters of a fitted model
object.
would fit a five variate multiple regression with variables (presumably) from the data frame
production, fit an additional model including a sixth regressor variable, and fit a variant on
the model where the response had a square root transform applied.
Note especially that if the data= argument is specified on the original call to the model
fitting function, this information is passed on through the fitted model object to update() and
its allies.
The name ‘.’ can also be used in other contexts, but with slightly different meaning. For
example
> fmfull <- lm(y ~ . , data = production)
would fit a model with response y and regressor variables all other variables in the data frame
production.
Other functions for exploring incremental sequences of models are add1(), drop1() and
step(). The names of these give a good clue to their purpose, but for full details see the on-line
help.
η = β1 x1 + β2 x2 + · · · + βp xp ,
A
fY (y; µ, ϕ) = exp {yλ(µ) − γ (λ(µ))} + τ (y, ϕ)
ϕ
where ϕ is a scale parameter (possibly known), and is constant for all observations, A
represents a prior weight, assumed known but possibly varying with the observations, and
µ is the mean of y. So it is assumed that the distribution of y is determined by its mean
and possibly a scale parameter as well.
• The mean, µ, is a smooth invertible function of the linear predictor:
These assumptions are loose enough to encompass a wide class of models useful in statistical
practice, but tight enough to allow the development of a unified methodology of estimation and
inference, at least approximately. The reader is referred to any of the current reference works
on the subject for full details, such as McCullagh & Nelder (1989) or Dobson (1990).
Chapter 11: Statistical models in R 56
11.6.1 Families
The class of generalized linear models handled by facilities supplied in R includes gaussian,
binomial, poisson, inverse gaussian and gamma response distributions and also quasi-likelihood
models where the response distribution is not explicitly specified. In the latter case the variance
function must be specified as a function of the mean, but in other cases this function is implied
by the response distribution.
Each response distribution admits a variety of link functions to connect the mean with the
linear predictor. Those automatically available are shown in the following table:
On the Aegean island of Kalythos the male inhabitants suffer from a congenital eye disease,
the effects of which become more marked with increasing age. Samples of islander males of
various ages were tested for blindness and the results recorded. The data is shown below:
Age: 20 35 45 55 70
No. tested: 50 50 50 50 50
No. blind: 6 17 26 37 44
The problem we consider is to fit both logistic and probit models to this data, and to estimate
for each model the LD50, that is the age at which the chance of blindness for a male inhabitant
is 50%.
If y is the number of blind at age x and n the number tested, both models have the form
y ∼ B(n, F (β0 + β1 x))
where for the probit case, F (z) = Φ(z) is the standard normal distribution function, and in the
logit case (the default), F (z) = ez /(1 + ez ). In both cases the LD50 is
LD50 = −β0 /β1
that is, the point at which the argument of the distribution function is zero.
The first step is to set the data up as a data frame
> kalythos <- data.frame(x = c(20,35,45,55,70), n = rep(50,5),
y = c(6,17,26,37,44))
To fit a binomial model using glm() there are three possibilities for the response:
• If the response is a vector it is assumed to hold binary data, and so must be a 0/1 vector.
• If the response is a two-column matrix it is assumed that the first column holds the number
of successes for the trial and the second holds the number of failures.
• If the response is a factor, its first level is taken as failure (0) and all other levels as ‘success’
(1).
Here we need the second of these conventions, so we add a matrix to our data frame:
> kalythos$Ymat <- cbind(kalythos$y, kalythos$n - kalythos$y)
To fit the models we use
> fmp <- glm(Ymat ~ x, family = binomial(link=probit), data = kalythos)
> fml <- glm(Ymat ~ x, family = binomial, data = kalythos)
Since the logit link is the default the parameter may be omitted on the second call. To see
the results of each fit we could use
> summary(fmp)
> summary(fml)
Both models fit (all too) well. To find the LD50 estimate we can use a simple function:
> ld50 <- function(b) -b[1]/b[2]
> ldp <- ld50(coef(fmp)); ldl <- ld50(coef(fml)); c(ldp, ldl)
The actual estimates from this data are 43.663 years and 43.601 years respectively.
Poisson models
With the Poisson family the default link is the log, and in practice the major use of this family
is to fit surrogate Poisson log-linear models to frequency data, whose actual distribution is often
multinomial. This is a large and important subject we will not discuss further here. It even
forms a major part of the use of non-gaussian generalized models overall.
Occasionally genuinely Poisson data arises in practice and in the past it was often analyzed
as gaussian data after either a log or a square-root transformation. As a graceful alternative to
the latter, a Poisson generalized linear model may be fitted as in the following example:
Chapter 11: Statistical models in R 58
Quasi-likelihood models
For all families the variance of the response will depend on the mean and will have the scale
parameter as a multiplier. The form of dependence of the variance on the mean is a characteristic
of the response distribution; for example for the poisson distribution Var[y] = µ.
For quasi-likelihood estimation and inference the precise response distribution is not specified,
but rather only a link function and the form of the variance function as it depends on the
mean. Since quasi-likelihood estimation uses formally identical techniques to those for the
gaussian distribution, this family provides a way of fitting gaussian models with non-standard
link functions or variance functions, incidentally.
For example, consider fitting the non-linear regression
θ 1 z1
y= +e
z2 − θ 2
1
y= +e
β1 x1 + β2 x2
where x1 = z2 /z1 , x2 = −1/z1 , β1 = 1/θ1 and β2 = θ2 /θ1 . Supposing a suitable data frame to
be set up we could fit this non-linear regression as
> nlfit <- glm(y ~ x1 + x2 - 1,
family = quasi(link=inverse, variance=constant),
data = biochem)
The reader is referred to the manual and the help document for further information, as
needed.
Parameters:
Estimate Std. Error t value Pr(>|t|)
Vm 2.127e+02 6.947e+00 30.615 3.24e-11
K 6.412e-02 8.281e-03 7.743 1.57e-05
equivalently which minimize the negative log-likelihood. Here is an example from Dobson (1990),
pp. 108–111. This example fits a logistic model to dose-response data, which clearly could also
be fit by glm(). The data are:
> x <- c(1.6907, 1.7242, 1.7552, 1.7842, 1.8113,
1.8369, 1.8610, 1.8839)
> y <- c( 6, 13, 18, 28, 52, 53, 61, 60)
> n <- c(59, 60, 62, 56, 63, 59, 62, 60)
The negative log-likelihood to minimize is:
> fn <- function(p)
sum( - (y*(p[1]+p[2]*x) - n*log(1+exp(p[1]+p[2]*x))
+ log(choose(n, y)) ))
We pick sensible starting values and do the fit:
> out <- nlm(fn, p = c(-50,20), hessian = TRUE)
After the fitting, out$minimum is the negative log-likelihood, and out$estimate are the maxi-
mum likelihood estimates of the parameters. To obtain the approximate SEs of the estimates
we do:
> sqrt(diag(solve(out$hessian)))
A 95% confidence interval would be the parameter estimate ± 1.96 SE.
Tree models are available in R via the user-contributed packages rpart and tree.
Chapter 12: Graphical procedures 62
12 Graphical procedures
Graphical facilities are an important and extremely versatile component of the R environment.
It is possible to use the facilities to display a wide variety of statistical graphs and also to build
entirely new types of graph.
The graphics facilities can be used in both interactive and batch modes, but in most cases,
interactive use is more productive. Interactive use is also easy because at startup time R initiates
a graphics device driver which opens a special graphics window for the display of interactive
graphics. Although this is done automatically, it is useful to know that the command used is
X11() under UNIX and windows() under Windows.
Once the device driver is running, R plotting commands can be used to produce a variety of
graphical displays and to create entirely new kinds of display.
Plotting commands are divided into three basic groups:
• High-level plotting functions create a new plot on the graphics device, possibly with axes,
labels, titles and so on.
• Low-level plotting functions add more information to an existing plot, such as extra points,
lines and labels.
• Interactive graphics functions allow you interactively add information to, or extract infor-
mation from, an existing plot, using a pointing device such as a mouse.
In addition, R maintains a list of graphical parameters which can be manipulated to customize
your plots.
This manual only describes what are known as ‘base’ graphics. A separate graphics sub-
system in package grid coexists with base – it is more powerful but harder to use. There is a
recommended package lattice which builds on grid and provides ways to produce multi-panel
plots akin to those in the Trellis system in S.
plot(df )
plot(~ expr )
plot(y ~ expr )
df is a data frame, y is any object, expr is a list of object names separated by ‘+’
(e.g., a + b + c). The first two forms produce distributional plots of the variables in
a data frame (first form) or of a number of named objects (second form). The third
form plots y against every object named in expr.
title(main, sub)
Adds a title main to the top of the current plot in a large font and (optionally) a
sub-title sub at the bottom in a smaller font.
axis(side, ...)
Adds an axis to the current plot on the side given by the first argument (1 to 4,
counting clockwise from the bottom.) Other arguments control the positioning of
the axis within or beside the plot, and tick positions and labels. Useful for adding
custom axes after calling plot() with the axes=FALSE argument.
Low-level plotting functions usually require some positioning information (e.g., x and y co-
ordinates) to determine where to place the new plot elements. Coordinates are given in terms of
user coordinates which are defined by the previous high-level graphics command and are chosen
based on the supplied data.
Where x and y arguments are required, it is also sufficient to supply a single argument being
a list with elements named x and y. Similarly a matrix with two columns is also valid input.
In this way functions such as locator() (see below) may be used to specify positions on a plot
interactively.
locator(n, type)
Waits for the user to select locations on the current plot using the left mouse button.
This continues until n (default 512) points have been selected, or another mouse
button is pressed. The type argument allows for plotting at the selected points and
has the same effect as for high-level graphics commands; the default is no plotting.
locator() returns the locations of the points selected as a list with two components
x and y.
locator() is usually called with no arguments. It is particularly useful for interactively
selecting positions for graphic elements such as legends or labels when it is difficult to calculate
in advance where the graphic should be placed. For example, to place some informative text
near an outlying point, the command
> text(locator(1), "Outlier", adj=0)
may be useful. (locator() will be ignored if the current device, such as postscript does not
support interactive pointing.)
identify(x, y, labels)
Allow the user to highlight any of the points defined by x and y (using the left mouse
button) by plotting the corresponding component of labels nearby (or the index
number of the point if labels is absent). Returns the indices of the selected points
when another button is pressed.
Sometimes we want to identify particular points on a plot, rather than their positions. For
example, we may wish the user to select some observation of interest from a graphical display
and then manipulate that observation in some way. Given a number of (x, y) coordinates in two
numeric vectors x and y, we could use the identify() function as follows:
> plot(x, y)
> identify(x, y)
The identify() functions performs no plotting itself, but simply allows the user to move
the mouse pointer and click the left mouse button near a point. If there is a point near the
mouse pointer it will be marked with its index number (that is, its position in the x/y vectors)
plotted nearby. Alternatively, you could use some informative string (such as a case name) as a
highlight by using the labels argument to identify(), or disable marking altogether with the
plot = FALSE argument. When the process is terminated (see above), identify() returns the
indices of the selected points; you can use these indices to extract the selected points from the
original vectors x and y.
par() Without arguments, returns a list of all graphics parameters and their values for
the current device.
par(c("col", "lty"))
With a character vector argument, returns only the named graphics parameters
(again, as a list.)
par(col=4, lty=2)
With named arguments (or a single list argument), sets the values of the named
graphics parameters, and returns the original values of the parameters as a list.
Setting graphics parameters with the par() function changes the value of the parameters
permanently, in the sense that all future calls to graphics functions (on the current device) will
be affected by the new value. You can think of setting graphics parameters in this way as
setting “default” values for the parameters, which will be used by all graphics functions unless
an alternative value is given.
Note that calls to par() always affect the global values of graphics parameters, even when
par() is called from within a function. This is often undesirable behavior—usually we want to
set some graphics parameters, do some plotting, and then restore the original values so as not
to affect the user’s R session. You can restore the initial values by saving the result of par()
when making changes, and restoring the initial values when plotting is complete.
> oldpar <- par(col=4, lty=2)
. . . plotting commands . . .
> par(oldpar)
To save and restore all settable1 graphical parameters use
> oldpar <- par(no.readonly=TRUE)
. . . plotting commands . . .
> par(oldpar)
pch="+" Character to be used for plotting points. The default varies with graphics drivers,
but it is usually ‘◦’. Plotted points tend to appear slightly above or below the
appropriate position unless you use "." as the plotting character, which produces
centered points.
pch=4 When pch is given as an integer between 0 and 25 inclusive, a specialized plotting
symbol is produced. To see what the symbols are, use the command
> legend(locator(1), as.character(0:25), pch = 0:25)
Those from 21 to 25 may appear to duplicate earlier symbols, but can be coloured
in different ways: see the help on points and its examples.
In addition, pch can be a character or a number in the range 32:255 representing
a character in the current font.
lty=2 Line types. Alternative line styles are not supported on all graphics devices (and
vary on those that do) but line type 1 is always a solid line, line type 0 is always invis-
ible, and line types 2 and onwards are dotted or dashed lines, or some combination
of both.
lwd=2 Line widths. Desired width of lines, in multiples of the “standard” line width.
Affects axis lines as well as lines drawn with lines(), etc. Not all devices support
this, and some have restrictions on the widths that can be used.
col=2 Colors to be used for points, lines, text, filled regions and images. A number from
the current palette (see ?palette) or a named colour.
col.axis
col.lab
col.main
col.sub The color to be used for axis annotation, x and y labels, main and sub-titles, re-
spectively.
font=2 An integer which specifies which font to use for text. If possible, device drivers
arrange so that 1 corresponds to plain text, 2 to bold face, 3 to italic, 4 to bold
italic and 5 to a symbol font (which include Greek letters).
font.axis
font.lab
font.main
font.sub The font to be used for axis annotation, x and y labels, main and sub-titles, respec-
tively.
adj=-0.1 Justification of text relative to the plotting position. 0 means left justify, 1 means
right justify and 0.5 means to center horizontally about the plotting position. The
actual value is the proportion of text that appears to the left of the plotting position,
so a value of -0.1 leaves a gap of 10% of the text width between the text and the
plotting position.
cex=1.5 Character expansion. The value is the desired size of text characters (including
plotting characters) relative to the default text size.
Chapter 12: Graphical procedures 70
cex.axis
cex.lab
cex.main
cex.sub The character expansion to be used for axis annotation, x and y labels, main and
sub-titles, respectively.
lab=c(5, 7, 12)
The first two numbers are the desired number of tick intervals on the x and y axes
respectively. The third number is the desired length of axis labels, in characters
(including the decimal point.) Choosing a too-small value for this parameter may
result in all tick labels being rounded to the same number!
las=1 Orientation of axis labels. 0 means always parallel to axis, 1 means always horizon-
tal, and 2 means always perpendicular to the axis.
mgp=c(3, 1, 0)
Positions of axis components. The first component is the distance from the axis
label to the axis position, in text lines. The second component is the distance to
the tick labels, and the final component is the distance from the axis position to the
axis line (usually zero). Positive numbers measure outside the plot region, negative
numbers inside.
tck=0.01 Length of tick marks, as a fraction of the size of the plotting region. When tck
is small (less than 0.5) the tick marks on the x and y axes are forced to be the
same size. A value of 1 gives grid lines. Negative values give tick marks outside the
plotting region. Use tck=0.01 and mgp=c(1,-1.5,0) for internal tick marks.
xaxs="r"
yaxs="i" Axis styles for the x and y axes, respectively. With styles "i" (internal) and "r"
(the default) tick marks always fall within the range of the data, however style "r"
leaves a small amount of space at the edges. (S has other styles not implemented in
R.)
A typical figure is
−−−−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−−−− mar[3]
−−−−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−−−−
3.0
Plot region
1.5
0.0
y
mai[2]
−1.5
−3.0
mai[1] x
Margin
mar=c(4, 2, 2, 1)
Similar to mai, except the measurement unit is text lines.
mar and mai are equivalent in the sense that setting one changes the value of the other. The
default values chosen for this parameter are often too large; the right-hand margin is rarely
needed, and neither is the top margin if no title is being used. The bottom and left margins
must be large enough to accommodate the axis and tick labels. Furthermore, the default is
chosen without regard to the size of the device surface: for example, using the postscript()
driver with the height=4 argument will result in a plot which is about 50% margin unless mar
or mai are set explicitly. When multiple figures are in use (see below) the margins are reduced,
however this may not be enough when many figures share the same page.
Chapter 12: Graphical procedures 72
−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−− oma[3]
−−−−−−−−−−−−−−−
−−−−−−−−−−−−−−−
omi[4]
mfg=c(3,2,3,2)
omi[1]
mfrow=c(3,2)
mfcol=c(3, 2)
mfrow=c(2, 4)
Set the size of a multiple figure array. The first value is the number of rows; the
second is the number of columns. The only difference between these two parameters
is that setting mfcol causes figures to be filled by column; mfrow fills by rows.
The layout in the Figure could have been created by setting mfrow=c(3,2); the
figure shows the page after four plots have been drawn.
Setting either of these can reduce the base size of symbols and text (controlled by
par("cex") and the pointsize of the device). In a layout with exactly two rows and
columns the base size is reduced by a factor of 0.83: if there are three or more of
either rows or columns, the reduction factor is 0.66.
mfg=c(2, 2, 3, 2)
Position of the current figure in a multiple figure environment. The first two numbers
are the row and column of the current figure; the last two are the number of rows
and columns in the multiple figure array. Set this parameter to jump between figures
in the array. You can even use different values for the last two numbers than the
true values for unequally-sized figures on the same page.
fig=c(4, 9, 1, 4)/10
Position of the current figure on the page. Values are the positions of the left, right,
bottom and top edges respectively, as a percentage of the page measured from the
bottom left corner. The example value would be for a figure in the bottom right of
the page. Set this parameter for arbitrary positioning of figures within a page. If
you want to add a figure to a current page, use new=TRUE as well (unlike S).
Chapter 12: Graphical procedures 73
oma=c(2, 0, 3, 0)
omi=c(0, 0, 0.8, 0)
Size of outer margins. Like mar and mai, the first measures in text lines and the
second in inches, starting with the bottom margin and working clockwise.
Outer margins are particularly useful for page-wise titles, etc. Text can be added to the outer
margins with the mtext() function with argument outer=TRUE. There are no outer margins by
default, however, so you must create them explicitly using oma or omi.
More complicated arrangements of multiple figures can be produced by the split.screen()
and layout() functions, as well as by the grid and lattice packages.
X11() [UNIX]
windows()
win.printer()
win.metafile()
[Windows]
quartz() [MacOS X]
postscript()
pdf()
... Each new call to a device driver function opens a new graphics device, thus extending
by one the device list. This device becomes the current device, to which graphics
output will be sent. (Some platforms may have further devices available.)
dev.list()
Returns the number and name of all active devices. The device at position 1 on the
list is always the null device which does not accept graphics commands at all.
dev.next()
dev.prev()
Returns the number and name of the graphics device next to, or previous to the
current device, respectively.
dev.set(which=k )
Can be used to change the current graphics device to the one at position k of the
device list. Returns the number and label of the device.
dev.off(k )
Terminate the graphics device at point k of the device list. For some devices, such as
postscript devices, this will either print the file immediately or correctly complete
the file for later printing, depending on how the device was initiated.
Chapter 12: Graphical procedures 75
13 Packages
All R functions and datasets are stored in packages. Only when a package is loaded are its
contents available. This is done both for efficiency (the full list would take more memory and
would take longer to search than a subset), and to aid package developers, who are protected
from name clashes with other code. The process of developing packages is described in section
“Creating R packages” in Writing R Extensions. Here, we will describe them from a user’s point
of view.
To see which packages are installed at your site, issue the command
> library()
with no arguments. To load a particular package (e.g., the boot package containing functions
from Davison & Hinkley (1997)), use a command like
> library(boot)
Users connected to the Internet can use the install.packages() and update.packages()
functions (available through the Packages menu in the Windows and RAqua GUIs, see section
“Installing packages” in R Installation and Adminstration) to install and update packages.
To see which packages are currently loaded, use
> search()
to display the search list. Some packages may be loaded but not available on the search list (see
Section 13.3 [Namespaces], page 76): these will be included in the list given by
> loadedNamespaces()
To see a list of all available help topics in an installed package, use
> help.start()
to start the HTML help system, and then navigate to the package listing in the Reference
section.
13.3 Namespaces
Packages can have namespaces, and currently all of the base and recommended packages do
expect the datasets package. Namespaces do three things: they allow the package writer
to hide functions and data that are meant only for internal use, they prevent functions from
breaking when a user (or other package writer) picks a name that clashes with one in the package,
and they provide a way to refer to an object within a particular package.
Chapter 13: Packages 77
For example, t() is the transpose function in R, but users might define their own function
named t. Namespaces prevent the user’s definition from taking precedence, and breaking every
function that tries to transpose a matrix.
There are two operators that work with namespaces. The double-colon operator :: selects
definitions from a particular namespace. In the example above, the transpose function will
always be available as base::t, because it is defined in the base package. Only functions that
are exported from the package can be retrieved in this way.
The triple-colon operator ::: may be seen in a few places in R code: it acts like the
double-colon operator but also allows access to hidden objects. Users are more likely to use
the getAnywhere() function, which searches multiple packages.
Packages are often inter-dependent, and loading one may cause others to be automatically
loaded. The colon operators described above will also cause automatic loading of the associated
package. When packages with namespaces are loaded automatically they are not added to the
search list.
Appendix A: A sample session 78
Appendix B Invoking R
‘--save’
‘--no-save’
Control whether data sets should be saved or not at the end of the R session. If
neither is given in an interactive session, the user is asked for the desired behavior
when ending the session with q(); in non-interactive use one of these must be
specified or implied by some other option (see below).
‘--no-environ’
Do not read any user file to set environment variables.
‘--no-site-file’
Do not read the site-wide profile at startup.
‘--no-init-file’
Do not read the user’s profile at startup.
‘--restore’
‘--no-restore’
‘--no-restore-data’
Control whether saved images (file ‘.RData’ in the directory where R was started)
should be restored at startup or not. The default is to restore. (‘--no-restore’
implies all the specific ‘--no-restore-*’ options.)
‘--no-restore-history’
Control whether the history file (normally file ‘.Rhistory’ in the directory where
R was started, but can be set by the environment variable R_HISTFILE) should be
restored at startup or not. The default is to restore.
‘--no-Rconsole’
(Windows only) Prevent loading the ‘Rconsole’ file at startup.
‘--vanilla’
Combine ‘--no-save’, ‘--no-environ’, ‘--no-site-file’, ‘--no-init-file’ and
‘--no-restore’. Under Windows, this also includes ‘--no-Rconsole’.
‘-f file ’
‘--file=file ’
Take input from file: ‘-’ means stdin. Implies ‘--no-save’ unless ‘--save’ has
been set.
‘-e expression ’
Use expression as an input line. One or more ‘-e’ options can be used, but not
together with ‘-f’ or ‘--file’. Implies ‘--no-save’ unless ‘--save’ has been set.
(There is a limit of 10,000 bytes on the total length of expressions used in this way.)
‘--no-readline’
(UNIX only) Turn off command-line editing via readline. This is useful when run-
ning R from within Emacs using the ESS (“Emacs Speaks Statistics”) package. See
Appendix C [The command-line editor], page 87, for more information.
‘--ess’ (Windows only) Set Rterm up for use by R-inferior-mode in ESS.
‘--min-vsize=N ’
‘--max-vsize=N ’
Specify the minimum or maximum amount of memory used for variable size objects
by setting the “vector heap” size to N bytes. Here, N must either be an integer
or an integer ending with ‘G’, ‘M’, ‘K’, or ‘k’, meaning ‘Giga’ (2^30), ‘Mega’ (2^20),
(computer) ‘Kilo’ (2^10), or regular ‘kilo’ (1000).
Appendix B: Invoking R 83
‘--min-nsize=N ’
‘--max-nsize=N ’
Specify the amount of memory used for fixed size objects by setting the number of
“cons cells” to N. See the previous option for details on N. A cons cell takes 28 bytes
on a 32-bit machine, and usually 56 bytes on a 64-bit machine.
‘--max-ppsize=N ’
Specify the maximum size of the pointer protection stack as N locations. This
defaults to 10000, but can be increased to allow large and complicated calculations
to be done. Currently the maximum value accepted is 100000.
‘--max-mem-size=N ’
(Windows only) Specify a limit for the amount of memory to be used both for R
objects and working areas. This is set by default to the smaller of 1.5Gb1 and the
amount of physical RAM in the machine, and must be between 32Mb and 3Gb.
‘--quiet’
‘--silent’
‘-q’ Do not print out the initial copyright and welcome messages.
‘--slave’ Make R run as quietly as possible. This option is intended to support programs
which use R to compute results for them. It implies ‘--quiet’ and ‘--no-save’.
‘--verbose’
Print more information about progress, and in particular set R’s option verbose to
TRUE. R code uses this option to control the printing of diagnostic messages.
‘--debugger=name ’
‘-d name ’ (UNIX only) Run R through debugger name. For most debuggers (the exceptions are
valgrind and recent versions of gdb), further command line options are disregarded,
and should instead be given when starting the R executable from inside the debugger.
‘--gui=type ’
‘-g type ’ (UNIX only) Use type as graphical user interface (note that this also includes in-
teractive graphics). Currently, possible values for type are ‘X11’ (the default), pro-
vided that ‘Tcl/Tk’ support is available, ‘Tk’ and ‘gnome’ provided that package
gnomeGUI is installed. (For back-compatibility, ‘x11’, ‘tk’ and ‘GNOME’ are ac-
cepted.)
‘--args’ This flag does nothing except cause the rest of the command line to be skipped:
this can be useful to retrieve values from it with commandArgs(TRUE).
Note that input and output can be redirected in the usual way (using ‘<’ and ‘>’), but the
line length limit of 1024 bytes still applies. Warning and error messages are sent to the error
channel (stderr) except on Windows 9X/ME.
The command R CMD allows the invocation of various tools which are useful in conjunction
with R, but not intended to be called “directly”. The general form is
R CMD command args
where command is the name of the tool and args the arguments passed on to it.
Currently, the following tools are available.
BATCH Run R in batch mode.
COMPILE (UNIX only) Compile files for use with R.
1
2.5Gb on versions of Windows that support 3Gb per process and have the support enabled: see the ‘rw-FAQ’
Q2.9.
Appendix B: Invoking R 84
‘--debug’ Enable the “Break to debugger” menu item in Rgui, and trigger a break to the
debugger during command line processing.
In Windows with R CMD you may also specify your own ‘*.bat’ or ‘*.exe’ file instead of one of
the built-in commands. It will be run with the following environment variables set appropriately:
R_HOME, R_VERSION, R_CMD, R_OSTYPE, PATH, PERL5LIB, and TEXINPUTS. For example, if you
already have ‘latex.exe’ on your path, then
R CMD latex.exe mydoc
will run LATEX on ‘mydoc.tex’, with the path to R’s ‘share/texmf’ macros added to TEXINPUTS.
One thing to consider is what stdin() refers to. It is commonplace to write R scripts with
segments like
chem <- scan(n=24)
2.90 3.10 3.40 3.40 3.70 3.70 2.80 2.50 2.40 2.40 2.70 2.20
5.28 3.37 3.03 3.03 28.95 3.77 3.40 2.20 3.50 3.60 3.70 3.70
and stdin() refers to the script file to allow such traditional usage. If you want to refer to the
process’s ‘stdin’, use "stdin" as a file connection, e.g. scan("stdin", ...).
Another way to write executable script files (suggested by François Pinard) is to use a here
document like
#!/bin/sh
[environment variables can be set here]
R --slave [other options] <<EOF
EOF
but here stdin() refers to the program source and "stdin" will not be usable.
Appendix C: The command-line editor 87
C.1 Preliminaries
When the GNU readline library is available at the time R is configured for compilation un-
der UNIX, an inbuilt command line editor allowing recall, editing and re-submission of prior
commands is used.
It can be disabled (useful for usage with ESS1 ) using the startup option ‘--no-readline’.
Windows versions of R have somewhat simpler command-line editing: see ‘Console’ under the
‘Help’ menu of the GUI, and the file ‘README.Rterm’ for command-line editing under Rterm.exe.
When using R with readline capabilities, the functions described below are available.
Many of these use either Control or Meta characters. Control characters, such as Control-m,
are obtained by holding the hCTRLi down while you press the hmi key, and are written as C-m
below. Meta characters, such as Meta-b, are typed by holding down hMETAi2 and pressing hbi,
and written as M-b in the following. If your terminal does not have a hMETAi key, you can still
type Meta characters using two-character sequences starting with ESC. Thus, to enter M-b, you
could type hESCihbi. The ESC character sequences are also allowed on terminals with real Meta
keys. Note that case is significant for Meta characters.
! ^
!. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 ^. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
!= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
|
% |. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
%*% . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 || . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
%o% . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
~
& ~ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
&. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
&& . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
A
abline . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
* ace . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 add1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
anova . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53, 54
aov . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
+ aperm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
+. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 array . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
as.data.frame. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
as.vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
- attach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
-. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 attr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
avas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
. axis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
.First . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
.Last . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 B
boxplot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
break . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
/ bruto . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
/. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
C
: c . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7, 10, 24, 27
:. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
:: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 cbind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24
::: . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76 coef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
coefficients . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
contour . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
< contrasts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
<. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 coplot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
<<- . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 cos . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
<= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 crossprod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19, 22
cut . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
=
== . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 D
data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
data.frame . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
> density . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
>. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 det . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
>= . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 detach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
determinant . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
dev.list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
? dev.next . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
?. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 dev.off . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
Appendix D: Function and variable index 90
dev.prev . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 list . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
dev.set . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74 lm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
deviance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 lme . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
diag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 locator . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
dim . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 loess . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
dotchart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64 log . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
drop1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 lqs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
lsfit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
E
ecdf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 M
edit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 mars . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
eigen . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 max . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
else . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 mean . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Error . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 min . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
exp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
F N
F. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
factor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
NaN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
FALSE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
ncol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
fivenum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
next . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
for . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
formula . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 nlm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58, 59, 60
function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42 nlme . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
nlminb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
nrow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
G
getAnywhere . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
getS3method . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
O
glm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 optim . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
order . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
ordered . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
H outer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
help . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
help.search . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
help.start . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 P
hist . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34, 63 pairs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
par . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
paste . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
I pdf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
identify . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 persp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64
if . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 plot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53, 62
ifelse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 pmax . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
image . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 64 pmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
is.na . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 png . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
is.nan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 points . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
polygon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
J postscript . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
predict . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
jpeg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 print . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
prod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
K
ks.test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 Q
qqline . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35, 63
L qqnorm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35, 63
legend . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65 qqplot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
length . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8, 13 qr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
levels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 quartz . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
lines . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
Appendix D: Function and variable index 91
R T
range . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 t . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
rbind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 T. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
read.table . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 t.test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
rep . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 table . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20, 25
repeat . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 tan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
resid . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 tapply . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16
residuals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 text . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
title . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
rlm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
tree . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
rm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
TRUE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
S U
scan . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 unclass . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
sd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 update . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
search . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
seq . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
shapiro.test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36 V
sin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 var . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8, 17
sink . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 var.test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
solve . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 vcov . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
sort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
split . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
sqrt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
W
stem . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 while . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41
step . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53, 55 wilcox.test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
sum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 windows . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33, 53
svd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 X
X11 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
Appendix E: Concept index 92
A K
Accessing builtin datasets . . . . . . . . . . . . . . . . . . . . . . . 31 Kolmogorov-Smirnov test . . . . . . . . . . . . . . . . . . . . . . . 36
Additive models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
Analysis of variance . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
Arithmetic functions and operators . . . . . . . . . . . . . . . 7 L
Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 Least squares fitting . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Assignment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Linear equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Linear models. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
Lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
Local approximating regressions . . . . . . . . . . . . . . . . . 60
B Loops and conditional execution. . . . . . . . . . . . . . . . . 40
Binary operators . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
Box plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
M
Matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
C Matrix multiplication . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
Character vectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Maximum likelihood . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
Classes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14, 48 Missing values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Concatenating lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 Mixed models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
Contrasts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52
Control statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 N
CRAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
Customizing the environment . . . . . . . . . . . . . . . . . . . 48 Named arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
Namespace . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
Nonlinear least squares . . . . . . . . . . . . . . . . . . . . . . . . . 58
D
Data frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 O
Default values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
Object orientation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
Density estimation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Determinants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
One- and two-sample tests . . . . . . . . . . . . . . . . . . . . . . 36
Diverting input and output . . . . . . . . . . . . . . . . . . . . . . 5
Ordered factors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16, 52
Dynamic graphics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
Outer products of arrays . . . . . . . . . . . . . . . . . . . . . . . . 21
E P
Eigenvalues and eigenvectors . . . . . . . . . . . . . . . . . . . . 23 Packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2, 76
Empirical CDFs. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 Probability distributions . . . . . . . . . . . . . . . . . . . . . . . . 33
F Q
Factors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16, 52 QR decomposition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
Families . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 Quantile-quantile plots . . . . . . . . . . . . . . . . . . . . . . . . . 35
Formulae . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
R
G Reading data from files . . . . . . . . . . . . . . . . . . . . . . . . . 30
Generalized linear models . . . . . . . . . . . . . . . . . . . . . . . 55 Recycling rule . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7, 20
Generalized transpose of an array . . . . . . . . . . . . . . . 21 Regular sequences . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
Generic functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48 Removing objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Graphics device drivers . . . . . . . . . . . . . . . . . . . . . . . . . 73 Robust regression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
Graphics parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
Grouped expressions . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
S
Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46
I Search path . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
Indexing of and by arrays . . . . . . . . . . . . . . . . . . . . . . . 18 Shapiro-Wilk test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
Indexing vectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Singular value decomposition. . . . . . . . . . . . . . . . . . . . 23
Statistical models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
Appendix E: Concept index 93
Student’s t test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37 V
Vectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
T
Tabulation. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
Tree-based models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60 W
Wilcoxon test . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
U Workspace . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
Updating fitted models . . . . . . . . . . . . . . . . . . . . . . . . . 54 Writing functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 42
Appendix F: References 94
Appendix F References
D. M. Bates and D. G. Watts (1988), Nonlinear Regression Analysis and Its Applications. John
Wiley & Sons, New York.
Richard A. Becker, John M. Chambers and Allan R. Wilks (1988), The New S Language. Chap-
man & Hall, New York. This book is often called the “Blue Book ”.
John M. Chambers and Trevor J. Hastie eds. (1992), Statistical Models in S. Chapman & Hall,
New York. This is also called the “White Book ”.
John M. Chambers (1998) Programming with Data. Springer, New York. This is also called the
“Green Book ”.
A. C. Davison and D. V. Hinkley (1997), Bootstrap Methods and Their Applications, Cambridge
University Press.
Annette J. Dobson (1990), An Introduction to Generalized Linear Models, Chapman and Hall,
London.
Peter McCullagh and John A. Nelder (1989), Generalized Linear Models. Second edition, Chap-
man and Hall, London.
John A. Rice (1995), Mathematical Statistics and Data Analysis. Second edition. Duxbury
Press, Belmont, CA.
S. D. Silvey (1970), Statistical Inference. Penguin, London.
R for Beginners
Emmanuel Paradis
E-mail: [email protected]
I thank Julien Claude, Christophe Declercq, Élodie Gazave, Friedrich Leisch,
Louis Luangkesron, François Pinard, and Mathieu Ros for their comments and
suggestions on earlier versions of this document. I am also grateful to all the
members of the R Development Core Team for their considerable efforts in
developing R and animating the discussion list ‘rhelp’. Thanks also to the
R users whose questions or comments helped me to write “R for Beginners”.
Special thanks to Jorge Ahumada for the Spanish translation.
1 Preamble 1
3 Data with R 9
3.1 Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2 Reading data in a file . . . . . . . . . . . . . . . . . . . . . . . 11
3.3 Saving data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14
3.4 Generating data . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3.4.1 Regular sequences . . . . . . . . . . . . . . . . . . . . . 15
3.4.2 Random sequences . . . . . . . . . . . . . . . . . . . . . 17
3.5 Manipulating objects . . . . . . . . . . . . . . . . . . . . . . . . 18
3.5.1 Creating objects . . . . . . . . . . . . . . . . . . . . . . 18
3.5.2 Converting objects . . . . . . . . . . . . . . . . . . . . . 23
3.5.3 Operators . . . . . . . . . . . . . . . . . . . . . . . . . . 25
3.5.4 Accessing the values of an object: the indexing system . 26
3.5.5 Accessing the values of an object with names . . . . . . 29
3.5.6 The data editor . . . . . . . . . . . . . . . . . . . . . . . 31
3.5.7 Arithmetics and simple functions . . . . . . . . . . . . . 31
3.5.8 Matrix computation . . . . . . . . . . . . . . . . . . . . 33
4 Graphics with R 36
4.1 Managing graphics . . . . . . . . . . . . . . . . . . . . . . . . . 36
4.1.1 Opening several graphical devices . . . . . . . . . . . . . 36
4.1.2 Partitioning a graphic . . . . . . . . . . . . . . . . . . . 37
4.2 Graphical functions . . . . . . . . . . . . . . . . . . . . . . . . . 40
4.3 Low-level plotting commands . . . . . . . . . . . . . . . . . . . 41
4.4 Graphical parameters . . . . . . . . . . . . . . . . . . . . . . . 43
4.5 A practical example . . . . . . . . . . . . . . . . . . . . . . . . 44
4.6 The grid and lattice packages . . . . . . . . . . . . . . . . . . . 48
7 Literature on R 71
1 Preamble
The goal of the present document is to give a starting point for people newly
interested in R. I chose to emphasize on the understanding of how R works,
with the aim of a beginner, rather than expert, use. Given that the possibilities
offered by R are vast, it is useful to a beginner to get some notions and
concepts in order to progress easily. I tried to simplify the explanations as
much as I could to make them understandable by all, while giving useful
details, sometimes with tables.
R is a system for statistical analyses and graphics created by Ross Ihaka
and Robert Gentleman1 . R is both a software and a language considered as a
dialect of the S language created by the AT&T Bell Laboratories. S is available
as the software S-PLUS commercialized by Insightful 2 . There are important
differences in the designs of R and of S: those who want to know more on this
point can read the paper by Ihaka & Gentleman (1996) or the R-FAQ 3 , a copy
of which is also distributed with R.
R is freely distributed under the terms of the GNU General Public Licence 4 ;
its development and distribution are carried out by several statisticians known
as the R Development Core Team.
R is available in several forms: the sources (written mainly in C and
some routines in Fortran), essentially for Unix and Linux machines, or some
pre-compiled binaries for Windows, Linux, and Macintosh. The files needed
to install R, either from the sources or from the pre-compiled binaries, are
distributed from the internet site of the Comprehensive R Archive Network
(CRAN)5 where the instructions for the installation are also available. Re-
garding the distributions of Linux (Debian, . . . ), the binaries are generally
available for the most recent versions; look at the CRAN site if necessary.
R has many functions for statistical analyses and graphics; the latter are
visualized immediately in their own window and can be saved in various for-
mats (jpg, png, bmp, ps, pdf, emf, pictex, xfig; the available formats may
depend on the operating system). The results from a statistical analysis are
displayed on the screen, some intermediate results (P-values, regression coef-
ficients, residuals, . . . ) can be saved, written in a file, or used in subsequent
analyses.
The R language allows the user, for instance, to program loops to suc-
cessively analyse several data sets. It is also possible to combine in a single
program different statistical functions to perform more complex analyses. The
1
Ihaka R. & Gentleman R. 1996. R: a language for data analysis and graphics. Journal
of Computational and Graphical Statistics 5: 299–314.
2
See http://www.insightful.com/products/splus/default.asp for more information
3
http://cran.r-project.org/doc/FAQ/R-FAQ.html
4
For more information: http://www.gnu.org/
5
http://cran.r-project.org/
1
R users may benefit from a large number of programs written for S and avail-
able on the internet6 , most of these programs can be used directly with R.
At first, R could seem too complex for a non-specialist. This may not
be true actually. In fact, a prominent feature of R is its flexibility. Whereas
a classical software displays immediately the results of an analysis, R stores
these results in an “object”, so that an analysis can be done with no result
displayed. The user may be surprised by this, but such a feature is very useful.
Indeed, the user can extract only the part of the results which is of interest.
For example, if one runs a series of 20 regressions and wants to compare the
different regression coefficients, R can display only the estimated coefficients:
thus the results may take a single line, whereas a classical software could well
open 20 results windows. We will see other examples illustrating the flexibility
of a system such as R compared to traditional softwares.
6
For example: http://stat.cmu.edu/S/
2
2 A few concepts before starting
The fact that R is a language may deter some users who think “I can’t pro-
gram”. This should not be the case for two reasons. First, R is an interpreted
language, not a compiled one, meaning that all commands typed on the key-
board are directly executed without requiring to build a complete program
like in most computer languages (C, Fortran, Pascal, . . . ).
Second, R’s syntax is very simple and intuitive. For instance, a linear
regression can be done with the command lm(y ~ x) which means “fitting
a linear model with y as response and x as predictor”. In R, in order to
be executed, a function always needs to be written with parentheses, even
if there is nothing within them (e.g., ls()). If one just types the name of a
function without parentheses, R will display the content of the function. In this
document, the names of the functions are generally written with parentheses in
order to distinguish them from other objects, unless the text indicates clearly
so.
When R is running, variables, data, functions, results, etc, are stored in
the active memory of the computer in the form of objects which have a name.
The user can do actions on these objects with operators (arithmetic, logical,
comparison, . . . ) and functions (which are themselves objects). The use of
operators is relatively intuitive, we will see the details later (p. 25). An R
function may be sketched as follows:
arguments −→ function
↑ =⇒result
options −→ default arguments
3
of which could be defined by default in the function; these default values may
be modified by the user by specifying options. An R function may require no
argument: either all arguments are defined by default (and their values can be
modified with the options), or no argument has been defined in the function.
We will see later in more details how to use and build functions (p. 67). The
present description is sufficient for the moment to understand how R works.
All the actions of R are done on objects stored in the active memory of
the computer: no temporary files are used (Fig. 1). The readings and writings
of files are used for input and output of data and results (graphics, . . . ). The
user executes the functions via some commands. The results are displayed
directly on the screen, stored in an object, or written on the disk (particularly
for graphics). Since the results are themselves objects, they can be considered
as data and analysed as such. Data files can be read from the local disk or
from a remote server through internet.
.../library/base/
?
- data
“data” objects files
internet
XXX
)
6 XXX
screen ? z
X
“results” objects PS JPEG ...
> n
[1] 10
4
The digit 1 within brackets indicates that the display starts at the first
element of n. This command is an implicit use of the function print and the
above example is similar to print(n) (in some situations, the function print
must be used explicitly, such as within a function or a loop).
The name of an object must start with a letter (A–Z and a–z) and can
include letters, digits (0–9), dots (.), and underscores ( ). R discriminates
between uppercase letters and lowercase ones in the names of the objects, so
that x and X can name two distinct objects (even under Windows).
> n <- 15
> n
[1] 15
> 5 -> n
> n
[1] 5
> x <- 1
> X <- 10
> x
[1] 1
> X
[1] 10
If the object already exists, its previous value is erased (the modification
affects only the objects in the active memory, not the data on the disk). The
value assigned this way may be the result of an operation and/or a function:
> n <- 10 + 2
> n
[1] 12
> n <- 3 + rnorm(1)
> n
[1] 2.208807
The function rnorm(1) generates a normal random variate with mean zero
and variance unity (p. 17). Note that you can simply type an expression
without assigning its value to an object, the result is thus displayed on the
screen but is not stored in memory:
> (10 + 2) * 5
[1] 60
5
The assignment will be omitted in the examples if not necessary for un-
derstanding.
The function ls lists simply the objects in memory: only the names of the
objects are displayed.
> name <- "Carmen"; n1 <- 10; n2 <- 100; m <- 0.5
> ls()
[1] "m" "n1" "n2" "name"
Note the use of the semi-colon to separate distinct commands on the same
line. If we want to list only the objects which contain a given character in
their name, the option pattern (which can be abbreviated with pat) can be
used:
To restrict the list of objects whose names start with this character:
> ls.str()
m : num 0.5
n1 : num 10
n2 : num 100
name : chr "Carmen"
The option pattern can be used in the same way as with ls. Another
useful option of ls.str is max.level which specifies the level of detail for the
display of composite objects. By default, ls.str displays the details of all
objects in memory, included the columns of data frames, matrices and lists,
which can result in a very long display. We can avoid to display all these
details with the option max.level = -1:
To delete objects in memory, we use the function rm: rm(x) deletes the
object x, rm(x,y) deletes both the objects x et y, rm(list=ls()) deletes all
the objects in memory; the same options mentioned for the function ls() can
then be used to delete selectively some objects: rm(list=ls(pat="^m")).
6
2.3 The on-line help
The on-line help of R gives very useful information on how to use the functions.
Help is available directly for a given function, for instance:
> ?lm
will display, within R, the help page for the function lm() (linear model). The
commands help(lm) and help("lm") have the same effect. The last one must
be used to access help with non-conventional characters:
> ?*
Error: syntax error
> help("*")
Arithmetic package:base R Documentation
Arithmetic Operators
...
Calling help opens a page (this depends on the operating system) with
general information on the first line such as the name of the package where
is (are) the documented function(s) or operators. Then comes a title followed
by sections which give detailed information.
Usage: for a function, gives the name with all its arguments and the possible
options (with the corresponding default values); for an operator gives
the typical use.
Value: if applicable, the type of object returned by the function or the oper-
ator.
See Also: other help pages close or similar to the present one.
7
> help("bs")
No documentation for ’bs’ in specified packages and libraries:
you could try ’help.search("bs")’
> help("bs", try.all.packages = TRUE)
Help for topic ’bs’ is not in any loaded package but
can be found in the following packages:
Package Library
splines /usr/lib/R/library
Note that in this case the help page of the function bs is not displayed.
The user can display help pages from a package not loaded in memory using
the option package:
Description:
The help in html format (read, e.g., with Netscape) is called by typing:
> help.start()
A search with keywords is possible with this html help. The section See
Also has here hypertext links to other function help pages. The search with
keywords is also possible in R with the function help.search. The latter
looks for a specified topic, given as a character string, in the help pages of all
installed packages. For instance, help.search("tree") will display a list of
the functions which help pages mention “tree”. Note that if some packages
have been recently installed, it may be useful to refresh the database used by
help.search using the option rebuild (e.g., help.search("tree", rebuild
= TRUE)).
The fonction apropos finds all functions which name contains the character
string given as argument; only the packages loaded in memory are searched:
> apropos(help)
[1] "help" ".helpForCall" "help.search"
[4] "help.start"
8
3 Data with R
3.1 Objects
We have seen that R works with objects which are, of course, characterized by
their names and their content, but also by attributes which specify the kind of
data represented by an object. In order to understand the usefulness of these
attributes, consider a variable that takes the value 1, 2, or 3: such a variable
could be an integer variable (for instance, the number of eggs in a nest), or
the coding of a categorical variable (for instance, sex in some populations of
crustaceans: male, female, or hermaphrodite).
It is clear that the statistical analysis of this variable will not be the same in
both cases: with R, the attributes of the object give the necessary information.
More technically, and more generally, the action of a function on an object
depends on the attributes of the latter.
All objects have two intrinsic attributes: mode and length. The mode
is the basic type of the elements of the object; there are four main modes:
numeric, character, complex7 , and logical (FALSE or TRUE). Other modes exist
but they do not represent data, for instance function or expression. The length
is the number of elements of the object. To display the mode and the length
of an object, one can use the functions mode and length, respectively:
> x <- 1
> mode(x)
[1] "numeric"
> length(x)
[1] 1
> A <- "Gomphotherium"; compar <- TRUE; z <- 1i
> mode(A); mode(compar); mode(z)
[1] "character"
[1] "logical"
[1] "complex"
9
> x <- 5/0
> x
[1] Inf
> exp(x)
[1] Inf
> exp(-x)
[1] 0
> x - x
[1] NaN
10
A vector is a variable in the commonly admitted meaning. A factor is a
categorical variable. An array is a table with k dimensions, a matrix being
a particular case of array with k = 2. Note that the elements of an array
or of a matrix are all of the same mode. A data frame is a table composed
with one or several vectors and/or factors all of the same length but possibly
of different modes. A ‘ts’ is a time series data set and so contains additional
attributes such as frequency and dates. Finally, a list can contain any type of
object, included lists!
For a vector, its mode and length are sufficient to describe the data. For
other objects, other information is necessary and it is given by non-intrinsic
attributes. Among these attributes, we can cite dim which corresponds to the
dimensions of an object. For example, a matrix with 2 lines and 2 columns
has for dim the pair of values [2, 2], but its length is 4.
For reading and writing in files, R uses the working directory. To find this
directory, the command getwd() (get working directory) can be used, and the
working directory can be changed with setwd("C:/data") or setwd("/home/-
paradis/R"). It is necessary to give the path to a file if it is not in the working
directory.8
R can read data stored in text (ASCII) files with the following functions:
read.table (which has several variants, see below), scan and read.fwf. R
can also read files in other formats (Excel, SAS, SPSS, . . . ), and access SQL-
type databases, but the functions needed for this are not in the package base.
These functionalities are very useful for a more advanced use of R, but we will
restrict here to reading files in ASCII format.
The function read.table has for effect to create a data frame, and so is
the main way to read data in tabular form. For instance, if one has a file
named data.dat, the command:
will create a data frame named mydata, and each variable will be named, by de-
fault, V1, V2, . . . and can be accessed individually by mydata$V1, mydata$V2,
. . . , or by mydata["V1"], mydata["V2"], . . . , or, still another solution, by
mydata[, 1], mydata[,2 ], . . . 9 There are several options whose default
values (i.e. those used by R if they are omitted by the user) are detailed in
the following table:
11
row.names, col.names, as.is = FALSE, na.strings = "NA",
colClasses = NA, nrows = -1,
skip = 0, check.names = TRUE, fill = !blank.lines.skip,
strip.white = FALSE, blank.lines.skip = TRUE,
comment.char = "#")
file the name of the file (within "" or a variable of mode character),
possibly with its path (the symbol \ is not allowed and must be
replaced by /, even under Windows), or a remote access to a file of
type URL (http://...)
header a logical (FALSE or TRUE) indicating if the file contains the names of
the variables on its first line
sep the field separator used in the file, for instance sep="\t" if it is a
tabulation
quote the characters used to cite the variables of mode character
dec the character used for the decimal point
row.names a vector with the names of the lines which can be either a vector of
mode character, or the number (or the name) of a variable of the
file (by default: 1, 2, 3, . . . )
col.names a vector with the names of the variables (by default: V1, V2, V3,
...)
as.is controls the conversion of character variables as factors (if FALSE)
or keeps them as characters (TRUE); as.is can be a logical, numeric
or character vector specifying the variables to be kept as character
na.strings the value given to missing data (converted as NA)
colClasses a vector of mode character giving the classes to attribute to the
columns
nrows the maximum number of lines to read (negative values are ignored)
skip the number of lines to be skipped before reading the data
check.names if TRUE, checks that the variable names are valid for R
fill if TRUE and all lines do not have the same number of variables,
“blanks” are added
strip.white (conditional to sep) if TRUE, deletes extra spaces before and after
the character variables
blank.lines.skip if TRUE, ignores “blank” lines
comment.char a character defining comments in the data file, the rest of the
line after this character is ignored (to disable this argument, use
comment.char = "")
The variants of read.table are useful since they have different default
values:
12
The function scan is more flexible than read.table. A difference is that
it is possible to specify the mode of the variables, for example:
reads in the file data.dat three variables, the first is of mode character and the
next two are of mode numeric. Another important distinction is that scan()
can be used to create different objects, vectors, matrices, data frames, lists,
. . . In the above example, mydata is a list of three vectors. By default, that is
if what is omitted, scan() creates a numeric vector. If the data read do not
correspond to the mode(s) expected (either by default, or specified by what),
an error message is returned. The options are the followings.
file the name of the file (within ""), possibly with its path (the symbol
\ is not allowed and must be replaced by /, even under Windows),
or a remote access to a file of type URL (http://...); if file="", the
data are entered with the keyboard (the entree is terminated by a
blank line)
what specifies the mode(s) of the data (numeric by default)
nmax the number of data to read, or, if what is a list, the number of lines
to read (by default, scan reads the data up to the end of file)
n the number of data to read (by default, no limit)
sep the field separator used in the file
quote the characters used to cite the variables of mode character
dec the character used for the decimal point
skip the number of lines to be skipped before reading the data
nlines the number of lines to read
na.string the value given to missing data (converted as NA)
flush a logical, if TRUE, scan goes to the next line once the number of
columns has been reached (allows the user to add comments in the
data file)
fill if TRUE and all lines do not have the same number of variables,
“blanks” are added
strip.white (conditional to sep) if TRUE, deletes extra spaces before and after
the character variables
quiet a logical, if FALSE, scan displays a line showing which fields have
been read
blank.lines.skip if TRUE, ignores blank lines
multi.line if what is a list, specifies if the variables of the same individual are
on a single line in the file (FALSE)
comment.char a character defining comments in the data file, the rest of the line
after this character is ignored (the default is to have this disabled)
allowEscapes specifies whether C-style escapes (e.g., ‘\t’) be processed (the de-
fault) or read as verbatim
13
The function read.fwf can be used to read in a file some data in fixed
width format:
read.fwf(file, widths, header = FALSE, sep = "\t",
as.is = FALSE, skip = 0, row.names, col.names,
n = -1, buffersize = 2000, ...)
The options are the same than for read.table() ex- A1.501.2
cept widths which specifies the width of the fields A1.551.3
(buffersize is the maximum number of lines read si- B1.601.4
multaneously). For example, if a file named data.txt has B1.651.5
the data indicated on the right, one can read the data C1.701.6
with the following command: C1.751.7
> mydata <- read.fwf("data.txt", widths=c(1, 4, 3))
> mydata
V1 V2 V3
1 A 1.50 1.2
2 A 1.55 1.3
3 B 1.60 1.4
4 B 1.65 1.5
5 C 1.70 1.6
6 C 1.75 1.7
The function write.table writes in a file an object, typically a data frame but
this could well be another kind of object (vector, matrix, . . . ). The arguments
and options are:
write.table(x, file = "", append = FALSE, quote = TRUE, sep = " ",
eol = "\n", na = "NA", dec = ".", row.names = TRUE,
col.names = TRUE, qmethod = c("escape", "double"))
14
To write in a simpler way an object in a file, the command write(x,
file="data.txt") can be used, where x is the name of the object (which
can be a vector, a matrix, or an array). There are two options: nc (or ncol)
which defines the number of columns in the file (by default nc=1 if x is of mode
character, nc=5 for the other modes), and append (a logical) to add the data
without deleting those possibly already in the file (TRUE) or deleting them if
the file already exists (FALSE, the default).
To record a group of objects of any type, we can use the command save(x,
y, z, file= "xyz.RData"). To ease the transfert of data between differ-
ent machines, the option ascii = TRUE can be used. The data (which are
now called a workspace in R’s jargon) can be loaded later in memory with
load("xyz.RData"). The function save.image() is a short-cut for save(list
=ls(all=TRUE), file=".RData").
The resulting vector x has 30 elements. The operator ‘:’ has priority on the
arithmetic operators within an expression:
> 1:10-1
[1] 0 1 2 3 4 5 6 7 8 9
> 1:(10-1)
[1] 1 2 3 4 5 6 7 8 9
where the first number indicates the beginning of the sequence, the second one
the end, and the third one the increment to be used to generate the sequence.
One can use also:
One can also type directly the values using the function c:
15
It is also possible, if one wants to enter some data on the keyboard, to use
the function scan with simply the default options:
The function rep creates a vector with all its elements identical:
> sequence(4:5)
[1] 1 2 3 4 1 2 3 4 5
> sequence(c(10,5))
[1] 1 2 3 4 5 6 7 8 9 10 1 2 3 4 5
> gl(3, 5)
[1] 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3
Levels: 1 2 3
> gl(3, 5, length=30)
[1] 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3 1 1 1 1 1 2 2 2 2 2 3 3 3 3 3
Levels: 1 2 3
> gl(2, 6, label=c("Male", "Female"))
[1] Male Male Male Male Male Male
[7] Female Female Female Female Female Female
Levels: Male Female
> gl(2, 10)
[1] 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2
Levels: 1 2
> gl(2, 1, length=20)
[1] 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2
Levels: 1 2
> gl(2, 2, length=20)
[1] 1 1 2 2 1 1 2 2 1 1 2 2 1 1 2 2 1 1 2 2
Levels: 1 2
16
Finally, expand.grid() creates a data frame with all combinations of vec-
tors or factors given as arguments:
law function
Gaussian (normal) rnorm(n, mean=0, sd=1)
exponential rexp(n, rate=1)
gamma rgamma(n, shape, scale=1)
Poisson rpois(n, lambda)
Weibull rweibull(n, shape, scale=1)
Cauchy rcauchy(n, location=0, scale=1)
beta rbeta(n, shape1, shape2)
‘Student’ (t) rt(n, df)
Fisher–Snedecor (F ) rf(n, df1, df2)
Pearson (χ2 ) rchisq(n, df)
binomial rbinom(n, size, prob)
multinomial rmultinom(n, size, prob)
geometric rgeom(n, prob)
hypergeometric rhyper(nn, m, n, k)
logistic rlogis(n, location=0, scale=1)
lognormal rlnorm(n, meanlog=0, sdlog=1)
negative binomial rnbinom(n, size, prob)
uniform runif(n, min=0, max=1)
Wilcoxon’s statistics rwilcox(nn, m, n), rsignrank(nn, n)
17
the cumulative probability density (pfunc (x, ...)), and the value of quantile
(qfunc (p, ...), with 0 < p < 1). The last two series of functions can be
used to find critical values or P -values of statistical tests. For instance, the
critical values for a two-tailed test following a normal distribution at the 5%
threshold are:
> qnorm(0.025)
[1] -1.959964
> qnorm(0.975)
[1] 1.959964
> 1 - pchisq(3.84, 1)
[1] 0.05004352
Vector. The function vector, which has two arguments mode and length,
creates a vector which elements have a value depending on the mode
specified as argument: 0 if numeric, FALSE if logical, or "" if charac-
ter. The following functions have exactly the same effect and have for
single argument the length of the vector: numeric(), logical(), and
character().
18
Factor. A factor includes not only the values of the corresponding categorical
variable, but also the different possible levels of that variable (even if they
are not present in the data). The function factor creates a factor with
the following options:
levels specifies the possible levels of the factor (by default the unique
values of the vector x), labels defines the names of the levels, exclude
the values of x to exclude from the levels, and ordered is a logical
argument specifying whether the levels of the factor are ordered. Recall
that x is of mode numeric or character. Some examples follow.
> factor(1:3)
[1] 1 2 3
Levels: 1 2 3
> factor(1:3, levels=1:5)
[1] 1 2 3
Levels: 1 2 3 4 5
> factor(1:3, labels=c("A", "B", "C"))
[1] A B C
Levels: A B C
> factor(1:5, exclude=4)
[1] 1 2 3 NA 5
Levels: 1 2 3 5
19
The option byrow indicates whether the values given by data must fill
successively the columns (the default) or the rows (if TRUE). The option
dimnames allows to give names to the rows and columns.
Data frame. We have seen that a data frame is created implicitly by the
function read.table; it is also possible to create a data frame with the
function data.frame. The vectors so included in the data frame must
be of the same length, or if one of the them is shorter, it is “recycled” a
whole number of times:
> x <- 1:4; n <- 10; M <- c(10, 35); y <- 2:4
> data.frame(x, n)
x n
1 1 10
2 2 10
20
3 3 10
4 4 10
> data.frame(x, M)
x M
1 1 10
2 2 35
3 3 10
4 4 35
> data.frame(x, y)
Error in data.frame(x, y) :
arguments imply differing number of rows: 4, 3
[[2]]
[1] 2 3 4
> L2
$A
[1] 1 2 3 4
$B
[1] 2 3 4
> names(L1)
NULL
> names(L2)
[1] "A" "B"
21
tions which characterize the series. The options, with the default values,
are:
22
Jan 1961 8 5 4
Feb 1961 6 6 9
Mar 1961 2 3 3
Apr 1961 8 5 4
May 1961 4 9 3
Jun 1961 4 6 13
Jul 1961 4 2 6
Aug 1961 11 6 4
Sep 1961 6 5 7
Oct 1961 6 5 7
Nov 1961 5 5 7
Dec 1961 8 5 2
23
packages base and utils, 98 of such functions, so we will not go in the deepest
details here.
The result of a conversion depends obviously of the attributes of the con-
verted object. Genrally, conversion follows intuitive rules. For the conversion
of modes, the following table summarizes the situation.
Note that the result is not NA as may have been expected from the table
above.
24
To convert a factor of mode numeric into a numeric vector but keeping the
levels as they are originally specified, one must first convert into character,
then into numeric.
> as.numeric(as.character(fac))
[1] 1 10
This procedure is very useful if in a file a numeric variable has also non-
numeric values. We have seen that read.table() in such a situation will, by
default, read this column as a factor.
3.5.3 Operators
We have seen previously that there are three main types of operators in R 10 .
Here is the list.
Operators
Arithmetic Comparison Logical
+ addition < lesser than ! x logical NOT
- subtraction > greater than x & y logical AND
* multiplication <= lesser than or equal to x && y id.
/ division >= greater than or equal to x | y logical OR
^ power == equal x || y id.
%% modulo != different xor(x, y) exclusive OR
%/% integer division
25
> x <- 0.5
> 0 < x < 1
[1] FALSE
26
> x[3]
[1] 3
> x[3] <- 20
> x
[1] 1 2 20 4 5
If x is a matrix or a data frame, the value of the ith line and j th column
is accessed with x[i, j]. To access all values of a given row or column, one
has simply to omit the appropriate index (without forgetting the comma!):
You have certainly noticed that the last result is a vector and not a matrix.
The default behaviour of R is to return an object of the lowest dimension
possible. This can be altered with the option drop which default is TRUE:
> x(1)
Error: couldn’t find function "x"
27
Indexing can also be used to suppress one or several rows or columns
using negative values. For example, x[-1, ] will suppress the first row, while
x[-c(1, 15), ] will do the same for the 1st and 15th rows. Using the matrix
defined above:
A practical use of the logical indexing is, for instance, the possibility to
select the even elements of an integer variable:
Thus, this indexing system uses the logical values returned, in the above
examples, by comparison operators. These logical values can be computed
beforehand, they then will be recycled if necessary:
28
Logical indexing can also be used with data frames, but with caution since
different columns of the data drame may be of different modes.
For lists, accessing the different elements (which can be any kind of object)
is done either with single or with double square brackets: the difference is
that with single brackets a list is returned, whereas double brackets extract the
object from the list. The result can then be itself indexed as previously seen for
vectors, matrices, etc. For instance, if the third object of a list is a vector, its
ith value can be accessed using my.list[[3]][i], if it is a three dimensional
array using my.list[[3]][i, j, k], and so on. Another difference is that
my.list[1:2] will return a list with the first and second elements of the
original list, whereas my.list[[1:2]] will no not give the expected result.
For matrices and data frames, colnames and rownames are labels of the
columns and rows, respectively. They can be accessed either with their re-
spective functions, or with dimnames which returns a list with both vectors.
29
[[2]]
[1] "c" "d"
For arrays, the names of the dimensions can be accessed with dimnames:
[,1] [,2]
[1,] 1 3
[2,] 2 4
, , 2
[,1] [,2]
[1,] 5 7
[2,] 6 8
c d
a 1 3
b 2 4
, , f
c d
a 5 7
b 6 8
30
3.5.6 The data editor
It is possible to use a graphical spreadsheet-like editor to edit a “data” object.
For example, if X is a matrix, the command data.entry(X) will open a graphic
editor and one will be able to modify some values by clicking on the appropriate
cells, or to add new columns or rows.
The function data.entry modifies directly the object given as argument
without needing to assign its result. On the other hand, the function de
returns a list with the objects given as arguments and possibly modified. This
result is displayed on the screen by default, but, as for most functions, can be
assigned to an object.
The details of using the data editor depend on the operating system.
Vectors of different lengths can be added; in this case, the shortest vector
is recycled. Examples:
31
Note that R returned a warning message and not an error message, thus
the operation has been performed. If we want to add (or multiply) the same
value to all the elements of a vector:
These functions return a single value (thus a vector of length one), except
range which returns a vector of length two, and var, cov, and cor which may
return a matrix. The following functions return more complex results.
32
log(x, base) computes the logarithm of x with base base
scale(x) if x is a matrix, centers and reduces the data; to center only use
the option center=FALSE, to reduce only scale=FALSE (by default
center=TRUE, scale=TRUE)
pmin(x,y,...) a vector which ith element is the minimum of x[i], y[i], . . .
pmax(x,y,...) id. for the maximum
cumsum(x) a vector which ith element is the sum from x[1] to x[i]
cumprod(x) id. for the product
cummin(x) id. for the minimum
cummax(x) id. for the maximum
match(x, y) returns a vector of the same length than x with the elements of x
which are in y (NA otherwise)
which(x == a) returns a vector of the indices of x if the comparison operation is
true (TRUE), in this example the values of i for which x[i] == a (the
argument of this function must be a variable of mode logical)
choose(n, k) computes the combinations of k events among n repetitions = n!/[(n−
k)!k!]
na.omit(x) suppresses the observations with missing data (NA) (suppresses the
corresponding line if x is a matrix or a data frame)
na.fail(x) returns an error message if x contains at least one NA
unique(x) if x is a vector or a data frame, returns a similar object but with the
duplicate elements suppressed
table(x) returns a table with the numbers of the differents values of x (typically
for integers or factors)
table(x, y) contingency table of x and y
subset(x, ...) returns a selection of x with respect to criteria (..., typically com-
parisons: x$V1 < 10); if x is a data frame, the option select gives
the variables to be kept (or dropped using a minus sign)
sample(x, size) resample randomly and without replacement size elements in the
vector x, the option replace = TRUE allows to resample with replace-
ment
33
[1,] 1 1 2 2
[2,] 1 1 2 2
The operator for the product of two matrices is ‘%*%’. For example, con-
sidering the two matrices m1 and m2 above:
> diag(m1)
[1] 1 1
> diag(rbind(m1, m2) %*% cbind(m1, m2))
[1] 2 2 8 8
> diag(m1) <- 10
> m1
[,1] [,2]
[1,] 10 1
[2,] 1 10
> diag(3)
[,1] [,2] [,3]
[1,] 1 0 0
[2,] 0 1 0
[3,] 0 0 1
> v <- c(10, 20, 30)
> diag(v)
[,1] [,2] [,3]
[1,] 10 0 0
[2,] 0 20 0
[3,] 0 0 30
> diag(2.1, nr = 3, nc = 5)
[,1] [,2] [,3] [,4] [,5]
[1,] 2.1 0.0 0.0 0 0
[2,] 0.0 2.1 0.0 0 0
[3,] 0.0 0.0 2.1 0 0
34
R has also some special functions for matrix computation. We can cite
here solve for inverting a matrix, qr for decomposition, eigen for computing
eigenvalues and eigenvectors, and svd for singular value decomposition.
35
4 Graphics with R
36
X11 X11 pdf
2 3 4
The figures displayed are the device numbers which must be used to change
the active device. To know what is the active device:
> dev.cur()
pdf
4
and to change the active device:
> dev.set(3)
X11
3
The function dev.off() closes a device: by default the active device is
closed, otherwise this is the one which number is given as argument to the
function. R then displays the number of the new active device:
> dev.off(2)
X11
3
> dev.off()
pdf
4
Two specific features of the Windows version of R are worth mentioning:
a Windows Metafile device can be open with the function win.metafile, and
a menu “History” displayed when the graphical window is selected allowing
recording of all graphs drawn during a session (by default, the recording system
is off, the user switches it on by clicking on “Recording” in this menu).
37
> layout(matrix(1:4, 2, 2))
To actually visualize the partition created, one can use the function layout.show
with the number of sub-windows as argument (here 4). In this example, we
will have:
1 3
> layout.show(4)
2 4
1 4
> layout(matrix(1:6, 3, 2))
> layout.show(6) 2 5
3 6
> layout.show(6)
2 4 6
> layout(m) 3
> layout.show(3) 2
In all these examples, we have not used the option byrow of matrix(), the
sub-windows are thus numbered column-wise; one can just specify matrix(...,
byrow=TRUE) so that the sub-windows are numbered row-wise. The numbers
38
in the matrix may also be given in any order, for example, matrix(c(2, 1,
4, 3), 2, 2).
By default, layout() partitions the device with regular heights and widths:
this can be modified with the options widths and heights. These dimensions
are given relatively12 . Examples:
2
> m <- matrix(c(1,1,2,1),2,2)
> layout(m, widths=c(2, 1), 1
heights=c(1, 2))
> layout.show(2)
Finally, the numbers in the matrix can include zeros giving the possibility
to make complex (or even esoterical) partitions.
2
> m <- matrix(0:3, 2, 2)
> layout(m, c(1, 3), c(1, 3))
1 3
> layout.show(3)
12
They can be given in centimetres, see ?layout.
39
4.2 Graphical functions
plot(x) plot of the values of x (on the y-axis) ordered on the x-axis
plot(x, y) bivariate plot of x (on the x-axis) and y (on the y-axis)
sunflowerplot(x, id. but the points with similar coordinates are drawn as a flower
y) which petal number represents the number of points
pie(x) circular pie-chart
boxplot(x) “box-and-whiskers” plot
stripchart(x) plot of the values of x on a line (an alternative to boxplot() for
small sample sizes)
coplot(x~y | z) bivariate plot of x and y for each value (or interval of values) of
z
interaction.plot if f1 and f2 are factors, plots the means of y (on the y-axis) with
(f1, f2, y) respect to the values of f1 (on the x-axis) and of f2 (different
curves); the option fun allows to choose the summary statistic
of y (by default fun=mean)
matplot(x,y) bivariate plot of the first column of x vs. the first one of y, the
second one of x vs. the second one of y, etc.
dotchart(x) if x is a data frame, plots a Cleveland dot plot (stacked plots
line-by-line and column-by-column)
fourfoldplot(x) visualizes, with quarters of circles, the association between two
dichotomous variables for different populations (x must be an
array with dim=c(2, 2, k), or a matrix with dim=c(2, 2) if
k = 1)
assocplot(x) Cohen–Friendly graph showing the deviations from indepen-
dence of rows and columns in a two dimensional contingency
table
mosaicplot(x) ‘mosaic’ graph of the residuals from a log-linear regression of a
contingency table
pairs(x) if x is a matrix or a data frame, draws all possible bivariate plots
between the columns of x
plot.ts(x) if x is an object of class "ts", plot of x with respect to time, x
may be multivariate but the series must have the same frequency
and dates
ts.plot(x) id. but if x is multivariate the series may have different dates
and must have the same frequency
hist(x) histogram of the frequencies of x
barplot(x) histogram of the values of x
qqnorm(x) quantiles of x with respect to the values expected under a normal
law
qqplot(x, y) quantiles of y with respect to the quantiles of x
contour(x, y, z) contour plot (data are interpolated to draw the curves), x
and y must be vectors and z must be a matrix so that
dim(z)=c(length(x), length(y)) (x and y may be omitted)
filled.contour (x, id. but the areas between the contours are coloured, and a legend
y, z) of the colours is drawn as well
image(x, y, z) id. but the actual data are represented with colours
persp(x, y, z) id. but in perspective
stars(x) if x is a matrix or a data frame, draws a graph with segments
or a star where each row of x is represented by a star and the
columns are the lengths of the segments
40
symbols(x, y, ...) draws, at the coordinates given by x and y, symbols (circles,
squares, rectangles, stars, thermometres or “boxplots”) which
sizes, colours, etc, are specified by supplementary arguments
termplot(mod.obj) plot of the (partial) effects of a regression model (mod.obj)
For each function, the options may be found with the on-line help in R.
Some of these options are identical for several graphical functions; here are
the main ones (with their possible default values):
R has a set of graphical functions which affect an already existing graph: they
are called low-level plotting commands. Here are the main ones:
41
rect(x1, y1, x2, draws a rectangle which left, right, bottom, and top limits are
y2) x1, x2, y1, and y2, respectively
polygon(x, y) draws a polygon linking the points with coordinates given by x
and y
legend(x, y, adds the legend at the point (x,y) with the symbols given by
legend) legend
title() adds a title and optionally a sub-title
axis(side, vect) adds an axis at the bottom (side=1), on the left (2), at the top
(3), or on the right (4); vect (optional) gives the abcissa (or
ordinates) where tick-marks are drawn
box() adds a box around the current plot
rug(x) draws the data x on the x-axis as small vertical lines
locator(n, returns the coordinates (x, y) after the user has clicked n times
type="n", ...) on the plot with the mouse; also draws symbols (type="p") or
lines (type="l") with respect to optional graphic parameters
(...); by default nothing is drawn (type="n")
42
4.4 Graphical parameters
> par(bg="yellow")
will result in all subsequent plots drawn with a yellow background. There
are 73 graphical parameters, some of them have very similar functions. The
exhaustive list of these parameters can be read with ?par; I will limit the
following table to the most usual ones.
adj controls text justification with respect to the left border of the text so that
0 is left-justified, 0.5 is centred, 1 is right-justified, values > 1 move the text
further to the left, and negative values further to the right; if two values are
given (e.g., c(0, 0)) the second one controls vertical justification with respect
to the text baseline
bg specifies the colour of the background (e.g., bg="red", bg="blue"; the list of
the 657 available colours is displayed with colors())
bty controls the type of box drawn around the plot, allowed values are: "o",
"l", "7", "c", "u" ou "]" (the box looks like the corresponding character); if
bty="n" the box is not drawn
cex a value controlling the size of texts and symbols with respect to the default; the
following parameters have the same control for numbers on the axes, cex.axis,
the axis labels, cex.lab, the title, cex.main, and the sub-title, cex.sub
col controls the colour of symbols; as for cex there are: col.axis, col.lab,
col.main, col.sub
font an integer which controls the style of text (1: normal, 2: italics, 3: bold, 4:
bold italics); as for cex there are: font.axis, font.lab, font.main, font.sub
las an integer which controls the orientation of the axis labels (0: parallel to the
axes, 1: horizontal, 2: perpendicular to the axes, 3: vertical)
lty controls the type of lines, can be an integer (1: solid, 2: dashed, 3: dotted,
4: dotdash, 5: longdash, 6: twodash), or a string of up to eight characters
(between "0" and "9") which specifies alternatively the length, in points or
pixels, of the drawn elements and the blanks, for example lty="44" will have
the same effet than lty=2
lwd a numeric which controls the width of lines
mar a vector of 4 numeric values which control the space between the axes and the
border of the graph of the form c(bottom, left, top, right), the default
values are c(5.1, 4.1, 4.1, 2.1)
mfcol a vector of the form c(nr,nc) which partitions the graphic window as a ma-
trix of nr lines and nc columns, the plots are then drawn in columns (see
section 4.1.2)
mfrow id. but the plots are then drawn in line (see section 4.1.2)
pch controls the type of symbol, either an integer between 1 and 25, or any single
character within "" (Fig. 2)
ps an integer which controls the size in points of texts and symbols
43
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18 19 20
* ? X a
pty a character which specifies the type of the plotting region, "s": square, "m":
maximal
tck a value which specifies the length of tick-marks on the axes as a fraction of
the smallest of the width or height of the plot; if tck=1 a grid is drawn
tcl id. but as a fraction of the height of a line of text (by default tcl=-0.5)
xaxt if xaxt="n" the x-axis is set but not drawn (useful in conjunction with
axis(side=1, ...))
yaxt if yaxt="n" the y-axis is set but not drawn (useful in conjunction with
axis(side=2, ...))
The wanted graph will be obtained with plot(); one will type the command:
> plot(x, y)
and the graph will be plotted on the active graphical device. The result
is shown on Fig. 3. By default, R makes graphs in an “intelligent” way:
44
0.5
0.0
y
−0.5
−1.0 −0.5 0.0 0.5 1.0
the spaces between tick-marks on the axes, the placement of labels, etc, are
calculated so that the resulting graph is as intelligible as possible.
The user may, nevertheless, change the way a graph is presented, for in-
stance, to conform to a pre-defined editorial style, or to give it a personal
touch for a talk. The simplest way to change the presentation of a graph is to
add options which will modify the default arguments. In our example, we can
modify significantly the figure in the following way:
The result is on Fig. 4. Let us detail each of the used options. First,
xlab and ylab change the axis labels which, by default, were the names of the
variables. Then, xlim and ylim allow us to define the limits on both axes 13 .
The graphical parameter pch is used here as an option: pch=22 specifies a
square which contour and background colours may be different and are given
by, respectively, col and bg. The table of graphical parameters gives the
meaning of the modifications done by bty, tcl, las and cex. Finally, a title
is added with the option main.
The graphical parameters and the low-level plotting functions allow us to
go further in the presentation of a graph. As we have seen previously, some
graphical parameters cannot be passed as arguments to a function like plot.
13
By default, R adds 4% on each side of the axis limit. This behaviour may be altered by
setting the graphical parameters xaxs="i" and yaxs="i" (they can be passed as options to
plot()).
45
How to customize a plot with R
−1
−2
−2 −1 0 1 2
We will now modify some of these parameters with par(), it is thus necessary
to type several commands. When the graphical parameters are changed, it
is useful to save their initial values beforehand to be able to restore them
afterwards. Here are the commands used to obtain Fig. 5.
Let us detail the actions resulting from these commands. First, the default
graphical parameters are copied in a list called here opar. Three parameters
will be then modified: bg for the colour of the background, col.axis for the
colour of the numbers on the axes, and mar for the sizes of the margins around
the plotting region. The graph is drawn in a nearly similar way to Fig. 4. The
modifications of the margins allowed to use the space around the plotting area.
The title here is added with the low-level plotting function title which allows
to give some parameters as arguments without altering the rest of the graph.
Finally, the initial graphical parameters are restored with the last command.
Now, total control! On Fig. 5, R still determines a few things such as
the number of tick marks on the axes, or the space between the title and the
plotting area. We will see now how to totally control the presentation of the
graph. The approach used here is to plot a “blank” graph with plot(...,
type="n"), then to add points, axes, labels, etc, with low-level plotting func-
46
How to customize a plot with R (bis)
−1
−2
−2 −1 0 1 2
tions. We will fancy a few arrangements such as changing the colour of the
plotting area. The commands follow, and the resulting graph is on Fig. 6.
Like before, the default graphical parameters are saved, and the colour
of the background and the margins are modified. The graph is then drawn
with type="n" to not plot the points, xlab="", ylab="" to not write the
axis labels, and xaxt="n", yaxt="n" to not draw the axes. This results in
drawing only the box around the plotting area, and defining the axes with
respect to xlim et ylim. Note that we could have used the option axes=FALSE
but in this case neither the axes, nor the box would have been drawn.
47
Ten other values How to customize a plot with R (ter)
−1
−2 0 2
Ten random values
The elements are then added in the plotting region so defined with some
low-level plotting functions. Before adding the points, the colour inside the
plotting area is changed with rect(): the size of the rectangle are chosen so
that it is substantially larger than the plotting area.
The points are plotted with points(); a new symbol was used. The axes
are added with axis(): the vector given as second argument specifies the
coordinates of the tick-marks. The option labels=FALSE specifies that no
annotation must be written with the tick-marks. This option also accepts a
vector of mode character, for example labels=c("A", "B", "C").
The title is added with title(), but the font is slightly changed. The
annotations on the axes are written with mtext() (marginal text). The first
argument of this function is a vector of mode character giving the text to be
written. The option line indicates the distance from the plotting area (by
default line=0), and at the coordinnate. The second call to mtext() uses
the default value of side (3). The two other calls to mtext() pass a numeric
vector as first argument: this will be converted into character.
The packages grid and lattice implement the grid and lattice systems. Grid is
a new graphical mode with its own system of graphical parameters which are
distinct from those seen above. The two main distinctions of grid compared
to the base graphics are:
• a more flexible way to split graphical devices using viewports which could
be overpalling (graphical objects may even be shared among distinct
viewports, e.g., arrows);
48
• graphical objects (grob) may be modified or removed from a graph with-
out requiring the re-draw all the graph (as must be done with base
graphics).
Grid graphics cannot usually be combined or mixed with base graphics
(the gridBase package must be used to do this). However, it is possible to use
both graphical modes in the same session on the same graphical device.
Lattice is essentially the implementation in R of the Trellis graphics of
S-PLUS. Trellis is an approach for visualizing multivariate data which is par-
ticularly appropriate for the exploration of relations or interactions among
variables14 . The main idea behind lattice (and Trellis as well) is that of con-
ditional multiple graphs: a bivariate graph will be split in several graphs with
respect to the values of a third variable. The function coplot uses a similar
approach, but lattice offers much wider functionalities. Lattice uses the grid
graphical mode.
Most functions in lattice take a formula as their main argument 15 , for
example y ~ x. The formula y ~ x | z means that the graph of y with
respect to x will be plotted as several graphs with respect to the values of z.
The following table gives the main functions in lattice. The formula given
as argument is the typical necessary formula, but all these functions accept
a conditional formula (y ~ x | z) as main argument; in the latter case, a
multiple graph, with respect to the values of z, is plotted as will be seen in
the examples below.
Let us see now some examples in order to illustrate a few aspects of lattice.
The package must be loaded in memory with the command library(lattice)
14
http://cm.bell-labs.com/cm/ms/departments/sia/project/trellis/index.html
15
plot() also accepts a formula as its main argument: if x and y are two vectors of the
same length, plot(y ~ x) and plot(x, y) will give identical graphs.
49
−4 −2 0 2 4
n = 35 n = 40 n = 45
0.6
0.5
0.4
0.3
0.2
0.1
0
n = 20 n = 25 n = 30
0.6
0.5
Density
0.4
0.3
0.2
0.1
0
n=5 n = 10 n = 15
0.6
0.5
0.4
0.3
0.2
0.1
0
−4 −2 0 2 4 −4 −2 0 2 4
x
50
165 170 175 180 185
lat
−25
−30
−35
−40
40−112 112−184 184−256
−10
−15
−20
−25
−30
−35
−40
165 170 175 180 185 165 170 175 180 185
long
(~ x | y) would have resulted in the same graph than Fig. 7 but without the
blue curves.
The next examples are taken, more or less modified, from the help pages
of lattice, and use some data sets available in R: the locations of 1000 seismic
events near the Fiji Islands, and some flower measurements made on three
species of iris.
Fig. 8 shows the geographic locations of the seismic events with respect to
depth. The commands necessary for this graph are:
data(quakes)
mini <- min(quakes$depth)
maxi <- max(quakes$depth)
int <- ceiling((maxi - mini)/9)
inf <- seq(mini, maxi, int)
quakes$depth.cat <- factor(floor(((quakes$depth - mini) / int)),
labels=paste(inf, inf + int, sep="-"))
xyplot(lat ~ long | depth.cat, data = quakes)
The first command loads the data quakes in memory. The five next com-
mands create a factor by dividing the depth (variable depth) in nine equally-
ranged intervals: the levels of this factor are labelled with the lower and upper
bounds of these intervals. It then suffices to call the function xyplot with the
appropriate formula and an argument data indicating where xyplot must look
for the variables16 .
With the data iris, the overlap among the different species is sufficiently
small so they can be plotted on the figure (Fig. 9). The commands are:
16
plot() cannot take an argument data, the location of the variables must be given
explicitly, for example plot(quakes$long ~ quakes$lat).
51
7
o
o o
o
o
setosa o
versicolor o o o
6 o o
o o
virginica o o o
o o o
o o o o o
o o
o o
o o
o o
o o o o o o o
5 o o o o
o o o
o o
o o o o
o o o
o o o o
Petal.Length
o o o
o
o o o
o o
4 o o o
o o o
o
o
o
o
o
3 o
2
o o
o o o o
o o o
o o o o
o o o
o o o
o
o
1 o
data(iris)
xyplot(
Petal.Length ~ Petal.Width, data = iris, groups=Species,
panel = panel.superpose,
type = c("p", "smooth"), span=.75,
auto.key = list(x = 0.15, y = 0.85)
)
The call to the function xyplot is here a bit more complex than in the
previous example and uses several options that we will detail. The option
groups, as suggested by its name, defines groups that will be used by the
other options. We have already seen the option panel which defines how the
different groups will be represented on the graph: we use here a pre-defined
function panel.superpose in order to superpose the groups on the same plot.
No option is passed to panel.superpose, the default colours will be used to
distinguish the groups. The option type, like in plot(), specifies how the
data are represented, but here we can give several arguments as a vector:
"p" to draw points and "smooth" to draw a smooth curve which degree of
smoothness is specified by span. The option auto.key adds a legend to the
graph: it is only necessary to give, as a list, the coordinates where the legend
is to be plotted. Note that here these coordinates are relative to the size of
the plot (i.e. in [0, 1]).
We will see now the function splom with the same data on iris. The
following commands were used to produce Fig. 10:
splom(
~iris[1:4], groups = Species, data = iris, xlab = "",
panel = panel.superpose,
52
Setosa Versicolor Virginica
o oo o o ooo o o o o oooooo oo 2.5 1.5 2 2.5
ooo
o o ooo oo
oo o
o o o ooooo oo
ooo oo oooooo oo o o oo
o o
oooo o ooooooo ooo
ooo 2
o ooooooooo ooo oo
o
o oo
ooo
ooo o ooo
ooooooooo
o o oooo
o ooooo o o o oooo
ooooo oooooo o o
oooo 1.5
o ooo o oo
oo oooo
oo ooo oo oooo o
oo
o oo ooooo o o o oo ooo
ooo Petal.Width
ooo oooooo ooo
o ooo
oo o
oo
oo
oooooooo
o
1
oo ooo ooo oo 0.5
ooo o
oooo
oooo
oo o
o o oo o o ooo
oooo
oooooo
oo ooo o oo
ooooo
oo oooo
oo o
o ooo
oo
ooooo
oo
oooo 0 0.5 1
0
o oo 7
oo o o 4 5 6 7 oooo
oo oo ooo oo o
o ooo o o
oooo oo o o o 6 o ooo o
ooooooooo oooo
o oooo o ooo o o
oooo
o o oo ooo o o
oooooooooo o o oo ooo 5 oooo o
ooo oo
oo
o oooo ooo oooooooo oo o
oo oo oo
ooooo oooo
ooo
ooooooooooo ooo o
oo ooooo
oo oo
oooooo 4 Petal.Length 4 o oo
oo o
o oo
oo
o
o o o oo oo
o
oo oo o
o o 3 o
oo ooo o 2
oooooo oo
oo o
ooo
ooo
o
ooooooooooooo oo oooo o oo o 1 oo
oooo
oooo o o o o o o o oo 2 3 4 1 oo
o
o 4.5
3.5 4 4.5 o o
ooo 4
o
oooo oo
oo
ooo
o oo oo oooo
o oo ooo
o oo
o ooooooo ooo o 3.5 ooo oo
oo o oo
o
oo o
ooo oo
oo o ooo oo oooo ooo o o ooo
ooooooo o oo ooooo
ooooo Sepal.Width ooo oo
ooo oooo
oooooooooo o
o o ooo o oo o
oo
o o oo oo oo
o oo
oo
oooooo
ooooooo oo 3 ooo oo o oo oooo
oo oooooooooo
ooooooo o
oo
oo
o oo
o
oo
o
oo
o
o oo
ooo
o
ooo
oo
o ooooo
oo
oo ooo
o oo
oo
oo o o o
o ooooooooo ooooo o o ooooooo o
oo oo
oooo o
oo o ooo o 2.5 o o oo oo o
ooooooo oooooo oooo o
o oo o ooo o o o o oo o o o
oo
o oo
o 2 2.5 3 2 o o
8 o o o
7 8 ooo o o o ooo o
oooo
oo o oo
oo o
o oooo oo o o
7 oo
o oooooo oo oo
o ooo o
oooo
o o oooooo
oooooo
o o
oo oo o
oo ooooo
oooooo
oo oooooooo ooooo ooo o
oo
oo o o o
o ooo
Sepal.Length oo oooo
ooo o
oo o o o o oo o
o o o ooo
6 o oooo
oo oo
o
oooooo ooo o o oooo o
o
oo o
ooo
ooo
oooo o o o ooo ooo oooooo
ooo o ooo oo
o o o oo o o
ooo
oo oo ooooooo o ooo
oo
o oo o oo o o
ooo
oo o o
oo oo oo
o o oo
o o o
oo ooo o oo
oooo o
5 o ooo o oo
o
o
oooooo ooo
oo
oo
ooo o
ooo o oo
oo
oo o o oo
ooo o o o
oo
oo o o
o oo o o oo ooo oo
oo
5 6 oo
o o ooo oo
Figure 10: The function splom with the data “iris” (1).
auto.key = list(columns = 3)
)
The main argument is this time a matrix (the four first columns of iris).
The result is the set of possible bivariate plots among the columns of the
matrix, like the standard function pairs. By default, splom adds the text
“Scatter Plot Matrix” under the x-axis: to avoid this, the option xlab=""
was used. The other options are similar to the previous example, except that
columns = 3 for auto.key was specified so the legend is displayed in three
columns.
Fig. 10 could have been done with pairs(), but this latter function cannot
make conditional graphs like on Fig. 11. The code used is relatively simple:
splom(~iris[1:3] | Species, data = iris, pscales = 0,
varnames = c("Sepal\nLength", "Sepal\nWidth", "Petal\nLength"))
The sub-graphs being relatively small, we added two options to improve
the legibility of the figure: pscales = 0 removes the tick-marks on the axes
(all sub-graphs are drawn on the same scales), and the names of the variables
were re-defined to display them on two lines ("\n" codes for a line break in a
character string).
The last example uses the method of parallel coordinates for the ex-
ploratory analysis of multivariate data. The variables are arranged on an
axis (e.g., the y-axis), and the observed values are plotted on the other axis
(the variables are scaled similarly, e.g., by standardizing them). The different
values of the same individual are joined by a line. With the data iris, Fig. 12
is obtained with the following code:
parallel(~iris[, 1:4] | Species, data = iris, layout = c(3, 1))
53
virginica
Petal
Length
Sepal
Width
Sepal
Length
setosa versicolor
Petal Petal
Length Length
Sepal Sepal
Width Width
Sepal Sepal
Length Length
Figure 11: The function splom with the data “iris” (2).
Min Max
Petal.Length
Sepal.Width
Sepal.Length
54
5 Statistical analyses with R
Even more than for graphics, it is impossible here to go in the details of the
possibilities offered by R with respect to statistical analyses. My goal here is
to give some landmarks with the aim to have an idea of the features of R to
perform data analyses.
The package stats contains functions for a wide range of basic statisti-
cal analyses: classical tests, linear models (including least-squares regression,
generalized linear models, and analysis of variance), distributions, summary
statistics, hierarchical clustering, time-series analysis, nonlinear least squares,
and multivariate analysis. Other statistical methods are available in a large
number of packages. Some of them are distributed with a base installation
of R and are labelled recommanded, and many other packages are contributed
and must be installed by the user.
We will start with a simple example which requires no other package than
stats in order to introduce the general approach to data analysis in R. Then,
we will detail some notions, formulae and generic functions, which are useful
whatever the type of analysis performed. We will conclude with an overview
on packages.
The function for the analysis of variance in stats is aov. In order to try it, let
us take a data set distributed with R: InsectSprays. Six insecticides were
tested in field conditions, the observed response was the number of insects.
Each insecticide was tested 12 times, thus there are 72 observations. We will
not consider here the graphical exploration of the data, but will focus on a
simple analysis of variance of the response with respect to the insecticide. After
loading the data in memory with the function data, the analysis is performed
after a square-root transformation of the response:
> data(InsectSprays)
> aov.spray <- aov(sqrt(count) ~ spray, data = InsectSprays)
55
> aov.spray <- aov(sqrt(InsectSprays[, 1]) ~ InsectSprays[, 2])
> aov.spray
Call:
aov(formula = sqrt(count) ~ spray, data = InsectSprays)
Terms:
spray Residuals
Sum of Squares 88.43787 26.05798
Deg. of Freedom 5 66
We may remind that typing the name of the object as a command is similar
to the command print(aov.spray). A graphical representation of the results
can be done with plot() or termplot(). Before typing plot(aov.spray) we
will divide the graphics into four parts so that the four diagnostics plots will
be done on the same graph. The commands are:
5.2 Formulae
Formulae are a key element in statistical analyses with R: the notation used
is the same for (almost) all functions. A formula is typically of the form y
~ model where y is the analysed response and model is a set of terms for
which some parameters are to be estimated. These terms are separated with
arithmetic symbols but they have here a particular meaning.
56
Residuals vs Fitted Scale−Location plot
Standardized residuals
1.5
27 39
27 25
39
1.0
Residuals
1.0
0.0
0.5
−1.5
0.0
25
Standardized residuals
0.08
27
39 27
Cook’s distance
2
39
25
0.04
0
0.00
−2
25
−2 −1 0 1 2 0 20 40 60
Figure 13: Graphical representation of the results from the function aov with
plot().
57
2
1
Partial for spray
0
−1
−2
−3
0 1 2 3 4 5 6
spray
Figure 14: Graphical representation of the results from the function aov with
termplot().
We remember that R’s functions act with respect to the attributes of the
objects possibly passed as arguments. The class is an attribute deserving some
attention here. It is very common that the R statistical functions return an
object of class with the same name (e.g., aov returns an object of class "aov",
lm returns one of class "lm"). The functions that we can use subsequently to
extract the results will act specifically with respect to the class of the object.
These functions are called generic.
For instance, the function which is most often used to extract results from
analyses is summary which displays detailed results. Whether the object given
as argument is of class "lm" (linear model) or "aov" (analysis of variance),
it sounds obvious that the information to display will not be the same. The
advantage of generic functions is that the syntax is the same in all cases.
An object containing the results of an analysis is generally a list, and the
way it is displayed is determined by its class. We have already seen this notion
that the action of a function depends on the kind of object given as argument.
It is a general feature of R17 . The following table gives the main generic func-
17
There are more than 100 generic functions in R.
58
tions which can be used to extract information from objects resulting from an
analysis. The typical usage of these functions is:
A function like aov or lm returns a list with its different elements corre-
sponding to the results of the analysis. If we take our example of an analysis
of variance with the data InsectSprays, we can look at the structure of the
object returned by aov:
Another way to look at this structure is to display the names of the object:
> names(aov.spray)
[1] "coefficients" "residuals" "effects"
[4] "rank" "fitted.values" "assign"
[7] "qr" "df.residual" "contrasts"
[10] "xlevels" "call" "terms"
[13] "model"
> aov.spray$coefficients
(Intercept) sprayB sprayC sprayD
3.7606784 0.1159530 -2.5158217 -1.5963245
sprayE sprayF
-1.9512174 0.2579388
summary() also creates a list which, in the case of aov(), is simply a table
of tests:
59
> str(summary(aov.spray))
List of 1
$ :Classes anova and ‘data.frame’: 2 obs. of 5 variables:
..$ Df : num [1:2] 5 66
..$ Sum Sq : num [1:2] 88.4 26.1
..$ Mean Sq: num [1:2] 17.688 0.395
..$ F value: num [1:2] 44.8 NA
..$ Pr(>F) : num [1:2] 0 NA
- attr(*, "class")= chr [1:2] "summary.aov" "listof"
> names(summary(aov.spray))
NULL
> apropos("^summary")
[1] "summary" "summary.aov"
[3] "summary.aovlist" "summary.connection"
[5] "summary.data.frame" "summary.default"
[7] "summary.factor" "summary.glm"
[9] "summary.glm.null" "summary.infl"
[11] "summary.lm" "summary.lm.null"
[13] "summary.manova" "summary.matrix"
[15] "summary.mlm" "summary.packageStatus"
[17] "summary.POSIXct" "summary.POSIXlt"
[19] "summary.table"
We can see the difference for this generic in the case of a linear regression,
compared to an analysis of variance, with a small simulated example:
60
this latter object, but in some cases a further argument is necessary like for
predict or update.
add1 tests successively all the terms that can be added to a model
drop1 tests successively all the terms that can be removed from a model
step selects a model with AIC (calls add1 and drop1)
anova computes a table of analysis of variance or deviance for one or several
models
predict computes the predicted values for new data from a fitted model
update re-fits a model with a new formula or new data
There are also various utilities functions that extract information from a
model object or a formula, such as alias which finds the linearly dependent
terms in a linear model specified by a formula.
Finally, there are, of course, graphical functions such as plot which dis-
plays various diagnostics, or termplot (see the above example), though this
latter function is not generic but calls predict.
5.4 Packages
The following table lists the standard packages which are distributed with a
base installation of R. Some of them are loaded in memory when R starts; this
can be displayed with the function search:
> search()
[1] ".GlobalEnv" "package:methods"
[3] "package:stats" "package:graphics"
[5] "package:grDevices" "package:utils"
[7] "package:datasets" "Autoloads"
[9] "package:base"
> library(grid)
61
Package Description
base base R functions
datasets base R datasets
grDevices graphics devices for base and grid graphics
graphics base graphics
grid grid graphics
methods definition of methods and classes for R objects and program-
ming tools
splines regression spline functions and classes
stats statistical functions
stats4 statistical functions using S4 classes
tcltk functions to interface R with Tcl/Tk graphical user interface
elements
tools tools for package development and administration
utils R utility functions
Package Description
boot resampling and bootstraping methods
class classification methods
cluster clustering methods
foreign functions for reading data stored in various formats (S3,
Stata, SAS, Minitab, SPSS, Epi Info)
KernSmooth methods for kernel smoothing and density estimation (in-
cluding bivariate kernels)
lattice Lattice (Trellis) graphics
MASS contains many functions, tools and data sets from the li-
braries of “Modern Applied Statistics with S” by Venables
& Ripley
mgcv generalized additive models
nlme linear and non-linear mixed-effects models
nnet neural networks and multinomial log-linear models
rpart recursive partitioning
spatial spatial analyses (“kriging”, spatial covariance, . . . )
survival survival analyses
18
http://cran.r-project.org/src/contrib/PACKAGES.html
62
There are two other main repositories of R packages: the Omegahat Project
for Statistical Computing19 which focuses on web-based applications and in-
terfaces between softwares and languages, and the Bioconductor Project 20
specialized in bioinformatic applications (particularly for the analysis of micro-
array data).
The procedure to install a package depends on the operating system and
whether R was installed from the sources or pre-compiled binaries. In the
latter situation, it is recommended to use the pre-compiled packages available
on CRAN’s site. Under Windows, the binary Rgui.exe has a menu “Packages”
allowing to install packages via internet from the CRAN Web site, or from
zipped files on the local disk.
If R was compiled, a package can be installed from its sources which are
distributed as a ‘.tar.gz’ file. For instance, if we want to install the package gee,
we will first download the file gee 4.13-6.tar.gz (the number 4.13-6 indicates
the version of the package; generally only one version is available on CRAN).
We will then type from the system (and not in R) the command:
> update.packages()
which checks the versions of the packages installed against those available
on CRAN (this command can be called from the menu “Packages” under
Windows). The user can then update the packages with more recent versions
than those installed on the computer.
19
http://www.omegahat.org/R/
20
http://www.bioconductor.org/
63
6 Programming with R in pratice
Now that we have done an overview of R’s functionalities, let us return to the
language and programming. We will see a few simple ideas likely to be used
in practice.
y <- numeric(length(x))
for (i in 1:length(x)) if (x[i] == b) y[i] <- 0 else y[i] <- 1
for (i in 1:length(x)) {
y[i] <- 0
...
}
if (x[i] == b) {
y[i] <- 0
...
}
64
> z <- x + y
This addition could be written with a loop, as this is done in most lan-
guages:
lapply() acts on a list: its syntax is similar to apply and it returns a list.
Call:
FUN(formula = X[[1]])
Coefficients:
65
(Intercept) x
31.683 5.377
[[2]]
Call:
FUN(formula = X[[2]])
Coefficients:
(Intercept) poly(x, 2)1 poly(x, 2)2
4.9330 1.2181 -0.6037
66
layout(matrix(1:3, 3, 1)) # partition the graphics
species <- c("swallow", "wren", "dunnock")
file <- c("Swal.dat" , "Wren.dat", "Dunn.dat")
for(i in 1:length(species)) {
data <- read.table(file[i]) # read the data
plot(data$V1, data$V2, type="l")
title(species[i]) # add a title
}
> source("Mybirds.R")
Like for any input from a file, it is necessary to give the path to access the
file if it is not in the working directory.
We have seen that most of R’s work is done with functions which arguments
are given within parentheses. Users can write their own functions, and these
will have exactly the same properties than other functions in R.
Writing your own functions allows an efficient, flexible, and rational use of
R. Let us come back to our example of reading some data followed by plotting
a graph. If we want to do this operation in different situations, it may be a
good idea to write a function:
67
like another program. If the user wants some functions to be loaded each
time when R starts, they can be saved in a workspace .RData which will be
loaded in memory if it is in the working directory. Another possibility is to
configure the file ‘.Rprofile’ or ‘Rprofile’ (see ?Startup for details). Finally,
it is possible to create a package, but this will not be discussed here (see the
manual “Writing R Extensions”).
Once the function is loaded, we will be able with a single command to read
the data and plot the graph, for instance with myfun("swallow", "Swal.dat").
Thus, we have now a third version of our program:
layout(matrix(1:3, 3, 1))
myfun("swallow", "Swal.dat")
myfun("wren", "Wrenn.dat")
myfun("dunnock", "Dunn.dat")
layout(matrix(1:3, 3, 1))
species <- c("swallow", "wren", "dunnock")
file <- c("Swal.dat" , "Wren.dat", "Dunn.dat")
sapply(species, myfun, file)
The name x is not used to create an object within foo(), so R will seek
in the enclosing environment if there is an object called x, and will print its
value (otherwise, a message error is displayed, and the execution is halted).
If x is used as the name of an object within our function, the value of x in
the global environment is not used.
> x <- 1
> foo2 <- function() { x <- 2; print(x) }
> foo2()
[1] 2
> x
[1] 1
This time print() uses the object x that is defined within its environment,
that is the environment of foo2.
68
The word “enclosing” above is important. In our two example functions,
there are two environments: the global one, and the one of the function foo
or foo2. If there are three or more nested environments, the search for the
objects is made progressively from a given environment to the enclosing one,
and so on, up to the global one.
There are two ways to specify arguments to a function: by their positions
or by their names (also called tagged arguments). For example, let us consider
a function with three arguments:
foo() can be executed without using the names arg1, . . . , if the corre-
sponding objects are placed in the correct position, for instance: foo(x, y,
z). However, the position has no importance if the names of the arguments
are used, e.g. foo(arg3 = z, arg2 = y, arg1 = x). Another feature of
R’s functions is the possibility to use default values in their definition. For
instance:
The commands foo(x), foo(x, 5, FALSE), and foo(x, arg3 = FALSE) will
have exactly the same result. The use of default values in a function definition
is very useful, particularly when used with tagged arguments (i.e. to change
only one default value such as foo(x, arg3 = TRUE).
To conclude this section, let us see another example which is not purely
statistical, but it illustrates the flexibility of R. Consider we wish to study the
behaviour of a non-linear model: Ricker’s model defined by:
Nt
Nt+1 = Nt exp r 1 −
K
This model is widely used in population dynamics, particularly of fish. We
want, using a function, to simulate this model with respect to the growth rate
r and the initial number in the population N 0 (the carrying capacity K is
often taken equal to 1 and this value will be taken as default); the results will
be displayed as a plot of numbers with respect to time. We will add an option
to allow the user to display only the numbers in the last few time steps (by
default all results will be plotted). The function below can do this numerical
analysis of Ricker’s model.
69
Try it yourself with:
70
7 Literature on R
• An Introduction to R [R-intro.pdf],
• R Installation and Administration [R-admin.pdf],
• R Data Import/Export [R-data.pdf],
• Writing R Extensions [R-exts.pdf],
• R Language Definition [R-lang.pdf].
On-line resources. The CRAN Web site hosts several documents, biblio-
graphic resources, and links to other sites. There are also a list of publi-
cations (books and articles) about R or statistical methods 21 and some
documents and tutorials written by R’s users 22 .
Mailing lists. There are four discussion lists on R; to subscribe, send a mes-
sage, or read the archives see: http://www.R-project.org/mail.html.
The general discussion list ‘r-help’ is an interesting source of information
for the users of R (the three other lists are dedicated to annoucements
of new versions, and for developers). Many users have sent to ‘r-help’
functions or programs which can be found in the archives. If a problem
is encountered with R, it is thus important to proceed in the following
order before sending a message to ‘r-help’:
1. read carefully the on-line help (possibly using the search engine);
2. read the R-FAQ;
3. search the archives of ‘r-help’ at the above address, or by using one
of the search engines developed on some Web sites 23 ;
4. read the “posting guide”24 before sending your question(s).
21
http://www.R-project.org/doc/bib/R-publications.html
22
http://cran.r-project.org/other-docs.html
23
The addresses of these sites are listed at http://cran.r-project.org/search.html
24
http://www.r-project.org/posting-guide.html
71
R News. The electronic journal R News aims to fill the gap between the
electronic discussion lists and traditional scientific publications. The
first issue was published on January 2001 25 .
25
http://cran.r-project.org/doc/Rnews/
72