R Exts
R Exts
R Core Team
This manual is for R, version 4.5.0 (2025-04-11).
Copyright c 1999–2025 R Core Team
Permission is granted to make and distribute verbatim copies of this manual provided
the copyright notice and this permission notice are preserved on all copies.
Permission is granted to copy and distribute modified versions of this manual under
the conditions 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 an-
other language, under the above conditions for modified versions, except that this
permission notice may be stated in a translation approved by the R Core Team.
i
Table of Contents
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1 Creating R packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.1 Package structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.1.1 The DESCRIPTION file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1.2 Licensing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.1.3 Package Dependencies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.1.3.1 Suggested packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
1.1.4 The INDEX file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
1.1.5 Package subdirectories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
1.1.6 Data in packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18
1.1.7 Non-R scripts in packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
1.1.8 Specifying URLs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
1.2 Configure and cleanup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
1.2.1 Using Makevars. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
1.2.1.1 OpenMP support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
1.2.1.2 Using pthreads . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30
1.2.1.3 Compiling in sub-directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
1.2.2 Configure example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
1.2.3 Using modern Fortran code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33
1.2.4 Using C++ code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
1.2.5 C standards . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
1.2.6 Using cmake . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
1.3 Checking and building packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
1.3.1 Checking packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
1.3.2 Building package tarballs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
1.3.3 Building binary packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
1.4 Writing package vignettes. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
1.4.1 Encodings and vignettes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47
1.4.2 Non-Sweave vignettes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 48
1.5 Package namespaces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
1.5.1 Specifying imports and exports. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
1.5.2 Registering S3 methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
1.5.3 Load hooks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
1.5.4 useDynLib . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51
1.5.5 An example. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
1.5.6 Namespaces with S4 classes and methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54
1.6 Writing portable packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56
1.6.1 PDF size . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 65
1.6.2 Check timing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
1.6.3 Encoding issues . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
1.6.4 Portable C and C++ code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
1.6.4.1 Common symbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
1.6.4.2 C++17 issues . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
1.6.4.3 C23 changes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
1.6.5 Portable Fortran code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
1.6.6 Binary distribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
1.7 Diagnostic messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78
ii
1.8 Internationalization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
1.8.1 C-level messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79
1.8.2 R messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
1.8.3 Preparing translations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
1.9 CITATION files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
1.10 Package types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
1.10.1 Frontend . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 81
1.11 Services . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 82
4 Debugging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
4.1 Browsing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
4.2 Debugging R code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 109
4.3 Checking memory access . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 112
4.3.1 Using gctorture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
4.3.2 Using Valgrind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
4.3.3 Using the Address Sanitizer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115
4.3.3.1 Using the Leak Sanitizer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 116
4.3.4 Using the Undefined Behaviour Sanitizer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 117
4.3.5 Other analyses with ‘clang’ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
4.3.6 Other analyses with ‘gcc’ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
4.3.7 Using ‘Dr. Memory’ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
4.3.8 Fortran array bounds checking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
4.4 Debugging compiled code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119
4.4.1 Finding entry points in dynamically loaded code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
4.4.2 Inspecting R objects when debugging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
4.4.3 Debugging on macOS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123
4.5 Using Link-time Optimization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 124
Acknowledgements
The contributions to early versions of this manual by Saikat DebRoy (who wrote the first draft
of a guide to using .Call and .External) and Adrian Trapletti (who provided information on
the C++ interface) are gratefully acknowledged.
2
1 Creating R packages
Packages provide a mechanism for loading optional code, data and documentation as needed.
The R distribution itself includes about 30 packages.
In the following, we assume that you know the library() command, including its lib.loc
argument, and we also assume basic knowledge of the R CMD INSTALL utility. Otherwise, please
look at R’s help pages on
?library
?INSTALL
before reading on.
For packages which contain code to be compiled, a computing environment including a num-
ber of tools is assumed; the “R Installation and Administration” manual describes what is
needed for each OS.
Once a source package is created, it must be installed by the command R CMD INSTALL. See
Section “Add-on packages” in R Installation and Administration.
Other types of extensions are supported (but rare): See Section 1.10 [Package types], page 81.
Some notes on terminology complete this introduction. These will help with the reading of
this manual, and also in describing concepts accurately when asking for help.
A package is a directory of files which extend R, a source package (the master files of a
package), or a tarball containing the files of a source package, or an installed package, the
result of running R CMD INSTALL on a source package. On some platforms (notably macOS and
‘x86_64’ Windows) there are also binary packages, a zip file or tarball containing the files of an
installed package which can be unpacked rather than installing from sources.
A package is not1 a library. The latter is used in two senses in R documentation.
• A directory into which packages are installed, e.g. /usr/lib/R/library: in that sense it is
sometimes referred to as a library directory or library tree (since the library is a directory
which contains packages as directories, which themselves contain directories).
• That used by the operating system, as a shared, dynamic or static library or (especially on
Windows) a DLL, where the second L stands for ‘library’. Installed packages may contain
compiled code in what is known on Unix-alikes as a shared object and on Windows as a DLL.
The concept of a shared library (dynamic library on macOS) as a collection of compiled code
to which a package might link is also used, especially for R itself on some platforms. On
most platforms these concepts are interchangeable (shared objects and DLLs can both be
loaded into the R process and be linked against), but macOS distinguishes between shared
objects (extension .so) and dynamic libraries (extension .dylib).
There are a number of well-defined operations on source packages.
• The most common is installation which takes a source package and installs it in a library
using R CMD INSTALL or install.packages.
• Source packages can be built. This involves taking a source directory and creating a tarball
ready for distribution, including cleaning it up and creating PDF/HTML documentation
from any vignettes it may contain. Source packages (and most often tarballs) can be checked,
when a test installation is done and tested (including running its examples); also, the
contents of the package are tested in various ways for consistency and portability.
• Compilation is not a correct term for a package. Installing a source package which contains
C, C++ or Fortran code will involve compiling that code. There is also the possibility of
‘byte’ compiling the R code in a package (using the facilities of package compiler): nowadays
1
although this is a persistent mis-usage. It seems to stem from S, whose analogues of R’s packages were officially
known as library sections and later as chapters, but almost always referred to as libraries.
Chapter 1: Creating R packages 3
this is enabled by default for all packages. So compiling a package may come to mean byte-
compiling its R code.
• It used to be unambiguous to talk about loading an installed package using library(),
but since the advent of package namespaces this has been less clear: people now often talk
about loading the package’s namespace and then attaching the package so it becomes visible
on the search path. Function library performs both steps, but a package’s namespace can
be loaded without the package being attached (for example by calls like splines::ns).
The concept of lazy loading of code or data is mentioned at several points. This is part of
the installation, always selected for R code but optional for data. When used the R objects of
the package are created at installation time and stored in a database in the R directory of the
installed package, being loaded into the session at first use. This makes the R session start up
faster and use less (virtual) memory. (For technical details, see Section “Lazy loading” in R
Internals.)
CRAN is a network of WWW sites holding the R distributions and contributed code, espe-
cially R packages. Users of R are encouraged to join in the collaborative project and to submit
their own packages to CRAN: current instructions are linked from https://CRAN.R-project.
org/banner.shtml#submitting.
2
This seems to be commonly used for a file in ‘markdown’ format. Be aware that most users of R will not
know that, nor know how to view such a file: platforms such as macOS and Windows do not have a default
viewer set in their file associations. The CRAN package web pages render such files in HTML: the converter
used expects the file to be encoded in UTF-8.
3
currently, top-level files .Rbuildignore and .Rinstignore, and vignettes/.install_extras.
Chapter 1: Creating R packages 4
packages. For example, if you have a package named foo, do not also create a package named
Foo.
To ensure that file names are valid across file systems and supported operating systems, the
ASCII control characters as well as the characters ‘"’, ‘*’, ‘:’, ‘/’, ‘<’, ‘>’, ‘?’, ‘\’, and ‘|’ are not
allowed in file names. In addition, files with names ‘con’, ‘prn’, ‘aux’, ‘clock$’, ‘nul’, ‘com1’ to
‘com9’, and ‘lpt1’ to ‘lpt9’ after conversion to lower case and stripping possible “extensions”
(e.g., ‘lpt5.foo.bar’), are disallowed. Also, file names in the same directory must not differ
only by case (see the previous paragraph). In addition, the basenames of ‘.Rd’ files may be used
in URLs and so must be ASCII and not contain %. For maximal portability filenames should only
contain only ASCII characters not excluded already (that is A-Za-z0-9._!#$%&+,;=@^(){}'[]
— we exclude space as many utilities do not accept spaces in file paths): non-English alphabetic
characters cannot be guaranteed to be supported in all locales. It would be good practice to
avoid the shell metacharacters (){}'[]$~: ~ is also used as part of ‘8.3’ filenames on Windows.
In addition, some applications on Windows can only work with path names of certain length,
following an earlier limit in the Windows operating system. Packages are normally distributed as
tarballs, and these have a limit on path lengths. So, to be friendly to users who themselves may
want to use a relatively long path where they extract the package, and for maximal portability,
100 bytes.
A source package if possible should not contain binary executable files: they are not portable,
and a security risk if they are of the appropriate architecture. R CMD check will warn about them4
unless they are listed (one filepath per line) in a file BinaryFiles at the top level of the package.
Note that CRAN will not accept submissions containing binary files even if they are listed.
The R function package.skeleton can help to create the structure for a new package: see
its help page for details.
The format is that of a version of a ‘Debian Control File’ (see the help for ‘read.dcf’ and
https://www.debian.org/doc/debian-policy/ch-controlfields.html: R does not require
encoding in UTF-8 and does not support comments starting with ‘#’). Fields start with an
4
false positives are possible, but only a handful have been seen so far.
Chapter 1: Creating R packages 5
ASCII name immediately followed by a colon: the value starts after the colon and a space. Con-
tinuation lines (for example, for descriptions longer than one line) start with a space or tab.
Field names are case-sensitive: all those used by R are capitalized.
For maximal portability, the DESCRIPTION file should be written entirely in ASCII — if this
is not possible it must contain an ‘Encoding’ field (see below).
Several optional fields take logical values: these can be specified as ‘yes’, ‘true’, ‘no’ or
‘false’: capitalized values are also accepted.
The ‘Package’, ‘Version’, ‘License’, ‘Description’, ‘Title’, ‘Author’, and ‘Maintainer’
fields are mandatory, all other fields are optional. Fields ‘Author’ and ‘Maintainer’ can be
auto-generated from ‘Authors@R’, and may be omitted if the latter is provided: however if they
are not ASCII we recommend that they are provided.
The mandatory ‘Package’ field gives the name of the package. This should contain only
(ASCII) letters, numbers and dot, have at least two characters and start with a letter and not
end in a dot. If it needs explaining, this should be done in the ‘Description’ field (and not the
‘Title’ field).
The mandatory ‘Version’ field gives the version of the package. This is a sequence of at
least two (and usually three) non-negative integers separated by single ‘.’ or ‘-’ characters. The
canonical form is as shown in the example, and a version such as ‘0.01’ or ‘0.01.0’ will be
handled as if it were ‘0.1-0’. It is not a decimal number, so for example 0.9 < 0.75 since 9 <
75.
The mandatory ‘License’ field is discussed in the next subsection.
The mandatory ‘Title’ field should give a short description of the package. Some package
listings may truncate the title to 65 characters. It should use title case (that is, use capitals
for the principal words: tools::toTitleCase can help you with this), not use any markup,
not have any continuation lines, and not end in a period (unless part of . . . ). Do not repeat
the package name: it is often used prefixed by the name. Refer to other packages and external
software in single quotes, and to book titles (and similar) in double quotes.
The mandatory ‘Description’ field should give a comprehensive description of what the
package does. One can use several (complete) sentences, but only one paragraph. It should be
intelligible to all the intended readership (e.g. for a CRAN package to all CRAN users). It is good
practice not to start with the package name, ‘This package’ or similar. As with the ‘Title’ field,
double quotes should be used for quotations (including titles of books and articles), and single
quotes for non-English usage, including names of other packages and external software. This field
should also be used for explaining the package name if necessary. URLs should be enclosed in
angle brackets, e.g. ‘<https://www.r-project.org>’: see also Section 1.1.8 [Specifying URLs],
page 20.
The mandatory ‘Author’ field describes who wrote the package. It is a plain text field intended
for human readers, but not for automatic processing (such as extracting the email addresses of
all listed contributors: for that use ‘Authors@R’). Note that all significant contributors must be
included: if you wrote an R wrapper for the work of others included in the src directory, you
are not the sole (and maybe not even the main) author.
The mandatory ‘Maintainer’ field should give a single name followed by a valid (RFC 2822)
email address in angle brackets. It should not end in a period or comma. This field is what is
reported by the maintainer function and used by bug.report. For a CRAN package it should
be a person, not a mailing list and not a corporate entity: do ensure that it is valid and will
remain valid for the lifetime of the package.
Note that the display name (the part before the address in angle brackets) should be enclosed
in double quotes if it contains non-alphanumeric characters such as comma or period. (The
current standard, RFC 5322, allows periods but RFC 2822 did not.)
Chapter 1: Creating R packages 6
Both ‘Author’ and ‘Maintainer’ fields can be omitted if a suitable ‘Authors@R’ field is given.
This field can be used to provide a refined and machine-readable description of the package
“authors” (in particular specifying their precise roles), via suitable R code. It should create
an object of class "person", by either a call to person or a series of calls (one per “author”)
concatenated by c(): see the example DESCRIPTION file above. The roles can include ‘"aut"’
(author) for full authors, ‘"cre"’ (creator) for the package maintainer, and ‘"ctb"’ (contribu-
tor) for other contributors, ‘"cph"’ (copyright holder, which should be the legal name for an
institution or corporate body), among others. See ?person for more information. Note that no
role is assumed by default. Auto-generated package citation information takes advantage of this
specification. The ‘Author’ and ‘Maintainer’ fields are auto-generated from it if needed when
building5 or installing. Note that for CRAN submissions, providing ‘Authors@R’ is required,
and providing ORCID or ROR identifiers (see https://orcid.org/ and https://ror.org/)
where possible is strongly encouraged.
An optional ‘Copyright’ field can be used where the copyright holder(s) are not the authors.
If necessary, this can refer to an installed file: the convention is to use file inst/COPYRIGHTS.
The optional ‘Date’ field gives the release date of the current version of the package. It is
strongly recommended6 to use the ‘yyyy-mm-dd’ format conforming to the ISO 8601 standard.
The ‘Depends’, ‘Imports’, ‘Suggests’, ‘Enhances’, ‘LinkingTo’ and
‘Additional_repositories’ fields are discussed in a later subsection.
Dependencies external to the R system should be listed in the ‘SystemRequirements’ field,
possibly amplified in a separate README file. This includes specifying a non-default C++ standard
and the need for GNU make.
The ‘URL’ field may give a list of URLs separated by commas or whitespace, for example
the homepage of the author or a page where additional material describing the software can be
found. These URLs are converted to active hyperlinks in CRAN package listings. See Section 1.1.8
[Specifying URLs], page 20.
The ‘BugReports’ field may contain a single URL to which bug reports about the package
should be submitted. This URL will be used by bug.report instead of sending an email to the
maintainer. A browser is opened for a ‘http://’ or ‘https://’ URL. To specify another email
address for bug reports, use ‘Contact’ instead: however bug.report will try to extract an email
address (preferably from a ‘mailto:’ URL or enclosed in angle brackets) from ‘BugReports’.
Base and recommended packages (i.e., packages contained in the R source distribution or
available from CRAN and recommended to be included in every binary distribution of R) have
a ‘Priority’ field with value ‘base’ or ‘recommended’, respectively. These priorities must not
be used by other packages.
A ‘Collate’ field can be used for controlling the collation order for the R code files in a
package when these are processed for package installation. The default is to collate according to
the ‘C’ locale. If present, the collate specification must list all R code files in the package (tak-
ing possible OS-specific subdirectories into account, see Section 1.1.5 [Package subdirectories],
page 13) as a whitespace separated list of file paths relative to the R subdirectory. Paths con-
taining white space or quotes need to be quoted. An OS-specific collation field (‘Collate.unix’
or ‘Collate.windows’) will be used in preference to ‘Collate’.
The ‘LazyData’ logical field controls whether the R datasets use lazy-loading. A ‘LazyLoad’
field was used in versions prior to 2.14.0, but now is ignored.
The ‘KeepSource’ logical field controls if the package code is sourced using keep.source =
TRUE or FALSE: it might be needed exceptionally for a package designed to always be used with
keep.source = TRUE.
5
at least if this is done in a locale which matches the package encoding.
6
and required by CRAN, so checked by R CMD check --as-cran.
Chapter 1: Creating R packages 7
7
without a src/Makefile* file.
8
LTO is not currently supported by the toolchain used on ‘aarch64’.
9
But it is checked for Open Source packages by R CMD check --as-cran.
Chapter 1: Creating R packages 8
The ‘OS_type’ field specifies the OS(es) for which the package is intended. If present, it
should be one of unix or windows, and indicates that the package can only be installed on a
platform with ‘.Platform$OS.type’ having that value.
The ‘Type’ field specifies the type of the package: see Section 1.10 [Package types], page 81.
One can add subject classifications for the content of the package using the fields
‘Classification/ACM’ or ‘Classification/ACM-2012’ (using the Computing Classification
System of the Association for Computing Machinery, https://www.acm.org/publications/
class-2012; the former refers to the 1998 version), ‘Classification/JEL’ (the Journal of
Economic Literature Classification System, https://www.aeaweb.org/econlit/jelCodes.
php, or ‘Classification/MSC’ or ‘Classification/MSC-2010’ (the Mathematics Subject
Classification of the American Mathematical Society, https://mathscinet.ams.org/msc/
msc2010.html; the former refers to the 2000 version). The subject classifications should be
comma-separated lists of the respective classification codes, e.g., ‘Classification/ACM: G.4,
H.2.8, I.5.1’.
A ‘Language’ field can be used to indicate if the package documentation is not in English: this
should be a comma-separated list of standard (not private use or grandfathered) IETF language
tags as currently defined by RFC 5646 (https://www.rfc-editor.org/rfc/rfc5646, see also
https://en.wikipedia.org/wiki/IETF_language_tag), i.e., use language subtags which in
essence are 2-letter ISO 639-1 (https://en.wikipedia.org/wiki/ISO_639-1) or 3-letter ISO
639-3 (https://en.wikipedia.org/wiki/ISO_639-3) language codes.
An ‘RdMacros’ field can be used to hold a comma-separated list of packages from which
the current package will import Rd macro definitions. These package should also be listed in
‘Imports’ (or ‘Depends’). The macros in these packages will be imported after the system
macros, in the order listed in the ‘RdMacros’ field, before any macro definitions in the current
package are loaded. Macro definitions in individual .Rd files in the man directory are loaded last,
and are local to later parts of that file. In case of duplicates, the last loaded definition will be
used.10 Both R CMD Rd2pdf and R CMD Rdconv have an optional flag --RdMacros=pkglist. The
option is also a comma-separated list of package names, and has priority over the value given in
DESCRIPTION. Packages using Rd macros should depend on R 3.2.0 or later.
Note: There should be no ‘Built’ or ‘Packaged’ fields, as these are added by the
package management tools.
There is no restriction on the use of other fields not mentioned here (but using other cap-
italizations of these field names would cause confusion). Fields Note, Contact (for contacting
the authors/developers11 ) and MailingList are in common use. Some repositories (including
CRAN and R-forge) add their own fields.
1.1.2 Licensing
Licensing for a package which might be distributed is an important but potentially complex
subject.
It is very important that you include license information! Otherwise, it may not even be
legally correct for others to distribute copies of the package, let alone use it.
The package management tools use the concept of ‘free or open source software’ (FOSS, e.g.,
https://en.wikipedia.org/wiki/FOSS) licenses: the idea being that some users of R and its
packages want to restrict themselves to such software. Others need to ensure that there are no
restrictions stopping them using a package, e.g. forbidding commercial or military use. It is a
central tenet of FOSS software that there are no restrictions on users nor usage.
10
Duplicate definitions may trigger a warning: see Section 2.13 [User-defined macros], page 98.
11
bug.report will try to extract an email address from a Contact field if there is no BugReports field.
Chapter 1: Creating R packages 9
Do not use the ‘License’ field for information on copyright holders: if needed, use a
‘Copyright’ field.
The mandatory ‘License’ field in the DESCRIPTION file should specify the license of the pack-
age in a standardized form. Alternatives are indicated via vertical bars. Individual specifications
must be one of
• One of the “standard” short specifications
GPL-2 GPL-3 LGPL-2 LGPL-2.1 LGPL-3 AGPL-3 Artistic-2.0
BSD_2_clause BSD_3_clause MIT
as made available via https://www.R-project.org/Licenses/ and contained in subdirec-
tory share/licenses of the R source or home directory.
• The names or abbreviations of other licenses contained in the license data base in file
share/licenses/license.db in the R source or home directory, possibly (for versioned
licenses) followed by a version restriction of the form ‘(op v)’ with ‘op’ one of the com-
parison operators ‘<’, ‘<=’, ‘>’, ‘>=’, ‘==’, or ‘!=’ and ‘v’ a numeric version specification
(strings of non-negative integers separated by ‘.’), possibly combined via ‘,’ (see below for
an example). For versioned licenses, one can also specify the name followed by the version,
or combine an existing abbreviation and the version with a ‘-’.
Abbreviations GPL and LGPL are ambiguous and usually12 taken to mean any version of the
license: but it is better not to use them.
• One of the strings ‘file LICENSE’ or ‘file LICENCE’ referring to a file named LICENSE or
LICENCE in the package (source and installation) top-level directory.
• The string ‘Unlimited’, meaning that there are no restrictions on distribution or use other
than those imposed by relevant laws (including copyright laws).
Multiple licences can be specified separated by ‘|’ (surrounded by spaces) in which case the user
can choose any of the alternatives.
If a package license restricts a base license (where permitted, e.g., using GPL-3 or AGPL-3
with an attribution clause), the additional terms should be placed in file LICENSE (or LICENCE),
and the string ‘+ file LICENSE’ (or ‘+ file LICENCE’, respectively) should be appended to the
corresponding individual license specification (preferably with the ‘+’ surrounded by spaces).
Note that several commonly used licenses do not permit restrictions: this includes GPL-2 and
hence any specification which includes it.
Examples of standardized specifications include
License: GPL-2
License: LGPL (>= 2.0, < 3) | Mozilla Public License
License: GPL-2 | file LICENCE
License: GPL (>= 2) | BSD_3_clause + file LICENSE
License: Artistic-2.0 | AGPL-3 + file LICENSE
Please note in particular that “Public domain” is not a valid license, since it is not recognized
in some jurisdictions.
Please ensure that the license you choose also covers any dependencies (including system
dependencies) of your package: it is particularly important that any restrictions on the use of
such dependencies are evident to people reading your DESCRIPTION file.
Fields ‘License_is_FOSS’ and ‘License_restricts_use’ may be added by repositories
where information cannot be computed from the name of the license. ‘License_is_FOSS: yes’
is used for licenses which are known to be FOSS, and ‘License_restricts_use’ can have values
‘yes’ or ‘no’ if the LICENSE file is known to restrict users or usage, or known not to. These are
used by, e.g., the available.packages filters.
12
CRAN expands them to e.g. GPL-2 | GPL-3.
Chapter 1: Creating R packages 10
The optional file LICENSE/LICENCE contains a copy of the license of the package. To avoid
any confusion only include such a file if it is referred to in the ‘License’ field of the DESCRIPTION
file.
Whereas you should feel free to include a license file in your source distribution, please do
not arrange to install yet another copy of the GNU COPYING or COPYING.LIB files but refer to
the copies on https://www.R-project.org/Licenses/ and included in the R distribution (in
directory share/licenses). Since files named LICENSE or LICENCE will be installed, do not use
these names for standard license files. To include comments about the licensing rather than the
body of a license, use a file named something like LICENSE.note.
A few “standard” licenses are rather license templates which need additional information to
be completed via ‘+ file LICENSE’ (with the ‘+’ surrounded by spaces). Where the additional
information is ‘COPYRIGHT HOLDER’, this must give the actual legal entities (not something vague
like ‘Name-of-package authors’): if more than one they should be listed in decreasing order of
contribution.
E.g., suppose an example13 from package foo uses a dataset from package bar. Then it is not
necessary to have bar to use foo unless one wants to execute all the examples: it is useful to
have bar, but not necessary. Version requirements can be specified but should be checked by
the code which uses the package.
Finally, the ‘Enhances’ field lists packages “enhanced” by the package at hand, e.g., by pro-
viding methods for classes from these packages, or ways to handle objects from these packages (so
several packages have ‘Enhances: chron’ because they can handle datetime objects from chron
(https://CRAN.R-project.org/package=chron) even though they prefer R’s native datetime
functions). Version requirements can be specified, but are currently not used. Such packages
cannot be required to check the package: any tests which use them must be conditional on the
presence of the package. (If your tests use e.g. a dataset from another package it should be in
‘Suggests’ and not ‘Enhances’.)
The general rules are
• A package should be listed in only one of these fields.
• Packages whose namespace only is needed to load the package using library(pkgname)
should be listed in the ‘Imports’ field and not in the ‘Depends’ field. Packages listed in
import or importFrom directives in the NAMESPACE file should almost always be in ‘Imports’
and not ‘Depends’.
• Packages that need to be attached to successfully load the package using library(pkgname)
must be listed in the ‘Depends’ field.
• All packages that are needed14 to successfully run R CMD check on the package must be
listed in one of ‘Depends’ or ‘Suggests’ or ‘Imports’. Packages used to run examples
or tests conditionally (e.g. via if(require(pkgname))) should be listed in ‘Suggests’ or
‘Enhances’. (This allows checkers to ensure that all the packages needed for a complete
check are installed.)
• Packages needed to use datasets from the package should be in ‘Imports’: this includes
those needed to define S4 classes used.
In particular, packages providing “only” data for examples, demos or vignettes should be listed
in ‘Suggests’ rather than ‘Depends’ in order to make lean installations possible.
Version dependencies in the ‘Depends’ and ‘Imports’ fields are used by library when it
loads the package, and install.packages checks versions for the ‘Depends’, ‘Imports’ and (for
dependencies = TRUE) ‘Suggests’ fields.
It is important that the information in these fields is complete and accurate: it is for example
used to compute which packages depend on an updated package and which packages can safely
be installed in parallel.
This scheme was developed before all packages had namespaces (R 2.14.0 in October 2011),
and good practice changed once that was in place.
Field ‘Depends’ should nowadays be used rarely, only for packages which are intended to
be put on the search path to make their facilities available to the end user (and not to the
package itself): for example it makes sense that a user of package latticeExtra (https://
CRAN.R-project.org/package=latticeExtra) would want the functions of package lattice
(https://CRAN.R-project.org/package=lattice) made available.
13
even one wrapped in \donttest, or a demo script.
14
This includes all packages directly called by library and require calls, as well as data obtained via
data(theirdata, package = "somepkg") calls: R CMD check will warn about all of these. But there are subtler
uses which it may not detect: e.g. if package A uses package B and makes use of functionality in package B
which uses package C which package B suggests or enhances, then package C needs to be in the ‘Suggests’
list for package A. Nor will undeclared uses in included files be reported, nor unconditional uses of packages
listed under ‘Enhances’. R CMD check --as-cran will detect more of the subtler uses.
Chapter 1: Creating R packages 12
Almost always packages mentioned in ‘Depends’ should also be imported from in the
NAMESPACE file: this ensures that any needed parts of those packages are available when some
other package imports the current package.
The ‘Imports’ field should not contain packages which are not imported from (via the
NAMESPACE file or :: or ::: operators), as all the packages listed in that field need to be installed
for the current package to be installed. (This is checked by R CMD check.)
R code in the package should call library or require only exceptionally. Such calls are
never needed for packages listed in ‘Depends’ as they will already be on the search path. It used
to be common practice to use require calls for packages listed in ‘Suggests’ in functions which
used their functionality, but nowadays it is better to access such functionality via :: calls.
A package that wishes to make use of header files in other packages to compile its C/C++ code
needs to declare them as a comma-separated list in the field ‘LinkingTo’ in the DESCRIPTION
file. For example
LinkingTo: link1, link2
The ‘LinkingTo’ field can have a version requirement which is checked at installation.
Specifying a package in ‘LinkingTo’ suffices if these are C/C++ headers containing source
code or static linking is done at installation: the packages do not need to be (and usually should
not be) listed in the ‘Depends’ or ‘Imports’ fields. This includes CRAN package BH (https://
CRAN.R-project.org/package=BH) and almost all users of RcppArmadillo (https://CRAN.
R-project.org/package=RcppArmadillo) and RcppEigen (https://CRAN.R-project.org/
package=RcppEigen). Note that ‘LinkingTo’ applies only to installation: if a packages wishes
to use headers to compile code in tests or vignettes the package providing them needs to be
listed in ‘Suggests’ or perhaps ‘Depends’.
For another use of ‘LinkingTo’ see Section 5.4.3 [Linking to native routines in other packages],
page 136.
The ‘Additional_repositories’ field is a comma-separated list of repository URLs where
the packages named in the other fields may be found. It is currently used by R CMD check to
check that the packages can be found, at least as source packages (which can be installed on any
platform).
Note that the recommendation to use suggested packages conditionally in tests does also ap-
ply to packages used to manage test suites: a notorious example was testthat (https://CRAN.
R-project.org/package=testthat) which in version 1.0.0 contained illegal C++ code and hence
could not be installed on standards-compliant platforms.
Some people have assumed that a ‘recommended’ package in ‘Suggests’ can safely be used
unconditionally, but this is not so. (R can be installed without recommended packages, and
which packages are ‘recommended’ may change.)
As noted above, packages in ‘Enhances’ must be used conditionally and hence objects within
them should always be accessed via ::.
On most systems, R CMD check can be run with only those packages declared in ‘Depends’
and ‘Imports’ by setting environment variable _R_CHECK_DEPENDS_ONLY_=true, whereas setting
_R_CHECK_SUGGESTS_ONLY_=true also allows suggested packages, but not those in ‘Enhances’
nor those not mentioned in the DESCRIPTION file. It is recommended that a package is checked
with each of these set, as well as with neither.
WARNING: Be extremely careful if you do things which would be run at installation time
depending on whether suggested packages are available or not—this includes top-level code in
R code files, .onLoad functions and the definitions of S4 classes and methods. The problem is
that once a namespace of a suggested package is loaded, references to it may be captured in
the installed package (most commonly in S4 methods), but the suggested package may not be
available when the installed package is used (which especially for binary packages might be on
a different machine). Even worse, the problems might not be confined to your package, for the
namespaces of your suggested packages will also be loaded whenever any package which imports
yours is installed and so may be captured there.
15
Extensions .S and .s arise from code originally written for S(-PLUS), but are commonly used for assembler
code. Extension .q was used for S, which at one time was tentatively called QPE.
Chapter 1: Creating R packages 14
Extreme care is needed if top-level computations are made to depend on availability or not of
other packages. In particular this applies to setMethods and setClass calls. Nor should they
depend on the availability of external resources such as downloads.
Two exceptions are allowed: if the R subdirectory contains a file sysdata.rda (a
saved image of one or more R objects: please use suitable compression as suggested by
tools::resaveRdaFiles, and see also the ‘SysDataCompression’ DESCRIPTION field.) this
will be lazy-loaded into the namespace environment – this is intended for system datasets that
are not intended to be user-accessible via data. Also, files ending in ‘.in’ will be allowed in
the R directory to allow a configure script to generate suitable files.
Only ASCII characters (and the control characters tab, form feed, LF and CR) should be
used in code files. Other characters are accepted in comments16 , but then the comments may
not be readable in e.g. a UTF-8 locale. Non-ASCII characters in object names will normally17
fail when the package is installed. Any byte will be allowed in a quoted character string but
‘\uxxxx’ escapes should be used for non-ASCII characters. However, non-ASCII character strings
may not be usable in some locales and may display incorrectly in others.
Various R functions in a package can be used to initialize and clean up. See Section 1.5.3
[Load hooks], page 51.
The man subdirectory should contain (only) documentation files for the objects in the package
in R documentation (Rd) format. The documentation filenames must start with an ASCII (lower
or upper case) letter or digit and have the extension .Rd (the default) or .rd. Further, the names
must be valid in ‘file://’ URLs, which means18 they must be entirely ASCII and not contain
‘%’. See Chapter 2 [Writing R documentation files], page 83, for more information. Note that all
user-level objects in a package should be documented; if a package pkg contains user-level objects
which are for “internal” use only, it should provide a file pkg-internal.Rd which documents all
such objects, and clearly states that these are not meant to be called by the user. See e.g. the
sources for package grid in the R distribution. Note that packages which use internal objects
extensively should not export those objects from their namespace, when they do not need to be
documented (see Section 1.5 [Package namespaces], page 49).
Having a man directory containing no documentation files may give an installation error.
The man subdirectory may contain a subdirectory named macros; this will contain source for
user-defined Rd macros. (See Section 2.13 [User-defined macros], page 98.) These use the Rd
format, but may not contain anything but macro definitions, comments and whitespace.
The R and man subdirectories may contain OS-specific subdirectories named unix or windows.
The sources and headers for the compiled code are in src, plus optionally a file Makevars
or Makefile (or for use on Windows, with extension .win or .ucrt). When a package is
installed using R CMD INSTALL, make is used to control compilation and linking into a shared
object for loading into R. There are default make variables and rules for this (determined when
R is configured and recorded in R_HOME/etcR_ARCH/Makeconf), providing support for C, C++,
fixed- or free-form Fortran, Objective C and Objective C++19 with associated extensions .c, .cc
or .cpp, .f, .f90 or .f95,20 .m, and .mm, respectively. We recommend using .h for headers,
also for C++21 or Fortran include files. (Use of extension .C for C++ is no longer supported.)
16
but they should be in the encoding declared in the DESCRIPTION file.
17
This is true for OSes which implement the ‘C’ locale: Windows’ idea of the ‘C’ locale uses the WinAnsi charset.
18
More precisely, they can contain the English alphanumeric characters and the symbols ‘$ - _ . + ! ' ( ) , ;
= &’.
19
either or both of which may not be supported on particular platforms. Their main use is on macOS, but
unfortunately recent versions of the macOS SDK have removed much of the support for Objective C v1.0 and
Objective C++.
20
This is not accepted by the Intel Fortran compiler.
21
Using .hpp is not guaranteed to be portable.
Chapter 1: Creating R packages 15
Files in the src directory should not be hidden (start with a dot), and hidden files will under
some versions of R be ignored.
It is not portable (and may not be possible at all) to mix all these languages in a single
package. Because R itself uses it, we know that C and fixed-form Fortran can be used together,
and mixing C, C++ and Fortran usually work for the platform’s native compilers.
If your code needs to depend on the platform there are certain defines which can be used
in C or C++. On all Windows builds (even 64-bit ones) ‘_WIN32’ will be defined: on 64-bit
Windows builds also ‘_WIN64’. For Windows on ARM, test for ‘_M_ARM64’ or both ‘_WIN32’ and
‘__aarch64__’. On macOS ‘__APPLE__’ is defined22 ; for an ‘Apple Silicon’ platform, test for
both ‘__APPLE__’ and ‘__arm64__’.
The default rules can be tweaked by setting macros23 in a file src/Makevars (see Section 1.2.1
[Using Makevars], page 25). Note that this mechanism should be general enough to eliminate the
need for a package-specific src/Makefile. If such a file is to be distributed, considerable care
is needed to make it general enough to work on all R platforms. If it has any targets at all, it
should have an appropriate first target named ‘all’ and a (possibly empty) target ‘clean’ which
removes all files generated by running make (to be used by ‘R CMD INSTALL --clean’ and ‘R CMD
INSTALL --preclean’). There are platform-specific file names on Windows: src/Makevars.win
takes precedence over src/Makevars and src/Makefile.win must be used. Since R 4.2.0,
src/Makevars.ucrt takes precedence over src/Makevars.win and src/Makefile.ucrt takes
precedence over src/Makefile.win. src/Makevars.ucrt and src/Makefile.ucrt will be ig-
nored by earlier versions of R, and hence can be used to provide content specific to UCRT or
Rtools42 and newer, but the support for .ucrt files may be removed in the future when building
packages from source on the older versions of R will no longer be needed, and hence the files
may be renamed back to .win. Some make programs require makefiles to have a complete final
line, including a newline.
A few packages use the src directory for purposes other than making a shared object (e.g.
to create executables). Such packages should have files src/Makefile and src/Makefile.win
or src/Makefile.ucrt (unless intended for only Unix-alikes or only Windows). Note that on
Unix such makefiles are included after R_HOME/etc/R_ARCH/Makeconf so all the usual R macros
and make rules are available – for example C compilation will by default use the C compiler
and flags with which R was configured. This also applies on Windows as from R 4.3.0: packages
intended to be used with earlier versions should include that file themselves.
The order of inclusion of makefiles for a package which does not have a src/Makefile file is
Unix-alike Windows
src/Makevars src/Makevars.ucrt, src/Makevars.win
R_HOME/etc/R_ARCH/Makeconf R_HOME/etc/R_ARCH/Makeconf
R_MAKEVARS_SITE, R_HOME/etc/R_ R_MAKEVARS_SITE, R_HOME/etc/R_
ARCH/Makevars.site ARCH/Makevars.site
R_HOME/share/make/shlib.mk R_HOME/share/make/winshlib.mk
R_MAKEVARS_USER, ~/.R/Makevars-platform, R_MAKEVARS_USER, ~/.R/Makevars.ucrt,
~/.R/Makevars ~/.R/Makevars.win64,
~/.R/Makevars.win
For those which do, it is
R_HOME/etc/R_ARCH/Makeconf R_HOME/etc/R_ARCH/Makeconf
R_MAKEVARS_SITE, R_HOME/etc/R_ R_MAKEVARS_SITE, R_HOME/etc/R_
ARCH/Makevars.site ARCH/Makevars.site
22
There is also ‘__APPLE_CC__’, but that indicates a compiler with Apple-specific features not the OS, although
for historical reasons it is defined by LLVM clang. It is used in Rinlinedfuns.h.
23
the POSIX terminology, called ‘make variables’ by GNU make.
Chapter 1: Creating R packages 16
libs, man, help, html and Meta, and earlier versions used latex, R-ex). The copying of the
inst happens after src is built so its Makefile can create files to be installed. To exclude
files from being installed, one can specify a list of exclude patterns in file .Rinstignore in the
top-level source directory. These patterns should be Perl-like regular expressions (see the help
for regexp in R for the precise details), one per line, to be matched case-insensitively against
the file and directory paths, e.g. doc/.*[.]png$ will exclude all PNG files in inst/doc based
on the extension.
Note that with the exceptions of INDEX, LICENSE/LICENCE and NEWS, information files at the
top level of the package will not be installed and so not be known to users of Windows and macOS
compiled packages (and not seen by those who use R CMD INSTALL or install.packages() on
the tarball). So any information files you wish an end user to see should be included in inst.
Note that if the named exceptions also occur in inst, the version in inst will be that seen in
the installed package.
Things you might like to add to inst are a CITATION file for use by the citation function,
and a NEWS.Rd file for use by the news function. See its help page for the specific format
restrictions of the NEWS.Rd file.
Another file sometimes needed in inst is AUTHORS or COPYRIGHTS to specify the authors or
copyright holders when this is too complex to put in the DESCRIPTION file.
Subdirectory tests is for additional package-specific test code, similar to the specific tests
that come with the R distribution. Test code can either be provided directly in a .R (or .r as
from R 3.4.0) file, or via a .Rin file containing code which in turn creates the corresponding
.R file (e.g., by collecting all function objects in the package and then calling them with the
strangest arguments). The results of running a .R file are written to a .Rout file. If there is a
corresponding25 .Rout.save file, these two are compared, with differences being reported but
not causing an error. The directory tests is copied to the check area, and the tests are run with
the copy as the working directory and with R_LIBS set to ensure that the copy of the package
installed during testing will be found by library(pkg_name). Note that the package-specific
tests are run in a vanilla R session without setting the random-number seed, so tests which use
random numbers will need to set the seed to obtain reproducible results (and it can be helpful
to do so in all cases, to avoid occasional failures when tests are run).
If directory tests has a subdirectory Examples containing a file pkg-Ex.Rout.save, this is
compared to the output file for running the examples when the latter are checked. Reference
output should be produced without having the --timings option set (and note that --as-cran
sets it).
If reference output is included for examples, demos, tests or vignettes do make sure that it
is fully reproducible, as it will be compared verbatim to that produced in a check run, unless
the ‘IGNORE_RDIFF’ markup is used. Things which trip up maintainers include displayed version
numbers from loading other packages, printing numerical results to an unreproducibly high
precision and printing timings. Another trap is small values which are in fact rounding error
from zero: consider using zapsmall.
Subdirectory exec could contain additional executable scripts the package needs, typically
scripts for interpreters such as the shell, Perl, or Tcl. NB: only files (and not directories) under
exec are installed (and those with names starting with a dot are ignored), and they are all
marked as executable (mode 755, moderated by ‘umask’) on POSIX platforms. Note too that
this is not suitable for executable programs since some platforms support multiple architectures
using the same installed package directory.
25
The best way to generate such a file is to copy the .Rout from a successful run of R CMD check. If you
want to generate it separately, do run R with options --vanilla --no-echo and with environment variable
LANGUAGE=en set to get messages in English. Be careful not to use output with the option --timings (and
note that --as-cran sets it).
Chapter 1: Creating R packages 18
Subdirectory po is used for files related to localization: see Section 1.8 [Internationalization],
page 79.
Subdirectory tools is the preferred place for auxiliary files needed during configuration, and
also for sources need to re-create scripts (e.g. M4 files for autoconf: some prefer to put those
in a subdirectory m4 of tools).
Package tools has a couple of functions to help with data images: checkRdaFiles reports
on the way the image was saved, and resaveRdaFiles will re-save with a different type of
compression, including choosing the best type for that particular image.
Many packages using ‘LazyData’ will benefit from using a form of compression other than
gzip in the installed lazy-loading database. This can be selected by the --data-compress
option to R CMD INSTALL or by using the ‘LazyDataCompression’ field in the DESCRIPTION file.
Useful values are bzip2, xz and the default, gzip: value none is also accepted. The only way to
discover which is best is to try them all and look at the size of the pkgname/data/Rdata.rdb
file. A function to do that (quoting sizes in KB) is
CheckLazyDataCompression <- function(pkg)
{
pkg_name <- sub("_.*", "", pkg)
lib <- tempfile(); dir.create(lib)
zs <- c("gzip", "bzip2", "xz")
res <- integer(3); names(res) <- zs
for (z in zs) {
opts <- c(paste0("--data-compress=", z),
"--no-libs", "--no-help", "--no-demo", "--no-exec", "--no-test-load")
install.packages(pkg, lib, INSTALL_opts = opts, repos = NULL, quiet = TRUE)
res[z] <- file.size(file.path(lib, pkg_name, "data", "Rdata.rdb"))
}
ceiling(res/1024)
}
(applied to a source package without any ‘LazyDataCompression’ field). R CMD check will warn
if it finds a pkgname/data/Rdata.rdb file of more than 5MB without ‘LazyDataCompression’
being set. If you see that, run CheckLazyDataCompression() and set the field – to gzip in the
unlikely event28 that is the best choice.
The analogue for sysdata.rda is field ‘SysDataCompression’: the default is xz for files
bigger than 1MB otherwise gzip.
Lazy-loading is not supported for very large datasets (those which when serialized exceed
2GB, the limit for the format on 32-bit platforms).
29
‘BWidget’ still is on Windows but ‘Tktable’ was not in R 4.0.0.
Chapter 1: Creating R packages 21
If your package needs some system-dependent configuration before installation you can in-
clude an executable (Bourne30 shell script configure in your package which (if present) is
executed by R CMD INSTALL before any other action is performed. This can be a script created
by the Autoconf mechanism, but may also be a script written by yourself. Use this to detect if
any nonstandard libraries are present such that corresponding code in the package can be dis-
abled at install time rather than giving error messages when the package is compiled or used. To
summarize, the full power of Autoconf is available for your extension package (including variable
substitution, searching for libraries, etc.). Background and useful tips on Autoconf and related
tools (including pkg-config described below) can be found at https://autotools.info/.
A configure script is run in an environment which has all the environment variables set for
an R session (see R_HOME/etc/Renviron) plus R_PACKAGE_NAME (the name of the package), R_
PACKAGE_DIR (the path of the target installation directory of the package, a temporary location
for staged installs) and R_ARCH (the arch-dependent part of the path, often empty).
Under a Unix-alike only, an executable (Bourne shell) script cleanup is executed as the last
thing by R CMD INSTALL if option --clean was given, and by R CMD build when preparing the
package for building from its source.
As an example consider we want to use functionality provided by a (C or Fortran) library
foo. Using Autoconf, we can create a configure script which checks for the library, sets variable
HAVE_FOO to TRUE if it was found and to FALSE otherwise, and then substitutes this value into
output files (by replacing instances of ‘@HAVE_FOO@’ in input files with the value of HAVE_FOO).
For example, if a function named bar is to be made available by linking against library foo (i.e.,
using -lfoo), one could use
AC_CHECK_LIB(foo, fun, [HAVE_FOO=TRUE], [HAVE_FOO=FALSE])
AC_SUBST(HAVE_FOO)
......
AC_CONFIG_FILES([foo.R])
AC_OUTPUT
in configure.ac (assuming Autoconf 2.50 or later).
The definition of the respective R function in foo.R.in could be
foo <- function(x) {
if(!@HAVE_FOO@)
stop("Sorry, library 'foo' is not available")
...
From this file configure creates the actual R source file foo.R looking like
foo <- function(x) {
if(!FALSE)
stop("Sorry, library 'foo' is not available")
...
if library foo was not found (with the desired functionality). In this case, the above R code
effectively disables the function.
30
The script should only assume a POSIX-compliant /bin/sh – see https://pubs.opengroup.org/onlinepubs/
9699919799/utilities/V3_chap02.html. In particular bash extensions must not be used, and not all R
platforms have a bash command, let alone one at /bin/bash. All known shells used with R support the
use of backticks, but not all support ‘$(cmd)’. However, real-world shells are not fully POSIX-compliant and
omissions and idiosyncrasies need to be worked around—which Autoconf will do for you. Arithmetic expansion
is a known issue: see https://www.gnu.org/software/autoconf/manual/autoconf.html#Portable-Shell
for this and others. Some checks can be done by the checkbashisms Perl script at https://sourceforge.
net/projects/checkbaskisms/files, also available in most Linux distributions in a package named either
‘devscripts’ or ‘devscripts-checkbashisms’: a later version can be extracted from Debian sources such as
the most recent tar.xz in https://deb.debian.org/debian/pool/main/d/devscripts/ and has been needed
for recent versions of Perl.
Chapter 1: Creating R packages 22
One could also use different file fragments for available and missing functionality, respectively.
You will very likely need to ensure that the same C compiler and compiler flags are used in
the configure tests as when compiling R or your package. Under a Unix-alike, you can achieve
this by including the following fragment early in configure.ac (before calling AC_PROG_CC or
anything which calls it)
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
echo "could not determine R_HOME"
exit 1
fi
CC=`"${R_HOME}/bin/R" CMD config CC`
CFLAGS=`"${R_HOME}/bin/R" CMD config CFLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
(Using ‘${R_HOME}/bin/R’ rather than just ‘R’ is necessary in order to use the correct version
of R when running the script as part of R CMD INSTALL, and the quotes since ‘${R_HOME}’ might
contain spaces.)
If your code does load checks (for example, to check for an entry point in a library or to run
code) then you will also need
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`
Packages written with C++ need to pick up the details for the C++ compiler and switch the
current language to C++ by something like
CXX=`"${R_HOME}/bin/R" CMD config CXX`
if test -z "$CXX"; then
AC_MSG_ERROR([No C++ compiler is available])
fi
CXXFLAGS=`"${R_HOME}/bin/R" CMD config CXXFLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
AC_LANG(C++)
The latter is important, as for example C headers may not be available to C++ programs or may
not be written to avoid C++ name-mangling. Note that an R installation is not required to have
a C++ compiler so ‘CXX’ may be empty. If the package specifies a non-default C++ standard, use
the config variable names (such as CXX17) appropriate to the standard, but still set CXX and
CXXFLAGS.
You can use R CMD config to get the value of the basic configuration variables, and also the
header and library flags necessary for linking a front-end executable program against R, see R
CMD config --help for details. If you do, it is essential that you use both the command and the
appropriate flags, so that for example ‘CC’ must always be used with ‘CFLAGS’ and (for code to be
linked into a shared library) ‘CPICFLAGS’. For Fortran, be careful to use ‘FC FFLAGS FPICFLAGS’
for fixed-form Fortran and ‘FC FCFLAGS FPICFLAGS’ for free-form Fortran.
As from R 4.3.0, variables
CC CFLAGS CXX CXXFLAGS CPPFLAGS LDFLAGS FC FCFLAGS
are set in the environment (if not already set) when configure is called from R CMD INSTALL, in
case the script forgets to set them as described above. This includes making use of the selected
C standard (but not the C++ standard as that is selected at a later stage by R CMD SHLIB).
To check for an external BLAS library using the AX_BLAS macro from the official Autoconf
Macro Archive31 , one can use
31
https://www.gnu.org/software/autoconf-archive/ax_blas.html. If you include macros from that archive
you need to arrange for them to be included in the package sources for use by autoreconf.
Chapter 1: Creating R packages 23
One of the more tricky tasks can be to find the headers and libraries of external software. One
tool which is increasingly available on Unix-alikes (but not by default32 on macOS) to do this
is pkg-config. The configure script will need to test for the presence of the command itself 33
(see for example package tiff (https://CRAN.R-project.org/package=tiff)), and if present it
can be asked if the software is installed, of a suitable version and for compilation/linking flags
by e.g.
$ pkg-config --exists 'libtiff-4 >= 4.1.0' --print-errors # check the status
$ pkg-config --modversion libtiff-4
4.3.0
$ pkg-config --cflags libtiff-4
-I/usr/local/include
$ pkg-config --libs libtiff-4
-L/usr/local/lib -ltiff
$ pkg-config --static --libs libtiff-4
-L/usr/local/lib -ltiff -lwebp -llzma -ljpeg -lz
Note that pkg-config --libs gives the information required to link against the default version34
of that library (usually the dynamic one), and pkg-config --static --libs may be needed if
the static library is to be used.
Static libraries are commonly used on macOS and Windows to facilitate bundling external
software with binary distributions of packages. This means that portable (source) packages
need to allow for this. It is not safe to just use pkg-config --static --libs, as that will often
include further libraries that are not necessarily installed on the user’s system (or maybe only
the versioned library such as libjbig.so.2.1 is installed and not libjbig.so which would be
needed to use -ljbig sometimes included in pkg-config --static --libs libtiff-4).
Another issue is that pkg-config --exists may not be reliable. It checks not only that the
‘module’ is available but all of the dependencies, including those in principle needed for static
linking. (XQuartz 2.8.x only distributed dynamic libraries and not some of the .pc files needed
for --exists.)
Sometimes the name by which the software is known to pkg-config is not what one might
expect (e.g. ‘libxml-2.0’ even for 2.9.x). To get a complete list use
pkg-config --list-all | sort
Some external software provides a -config command to do a similar job to pkg-config,
including
curl-config freetype-config gdal-config geos-config
gsl-config iodbc-config libpng-config nc-config
pcre-config pcre2-config xml2-config xslt-config
(curl-config is for libcurl not curl. nc-config is for netcdf.) Most have an option to use
static libraries.
N.B. These commands indicate what header paths and libraries are needed, but they do not
obviate the need to check that the recipes they give actually work. (This is especially necessary
for platforms which use static linking.)
32
but it is available on the machines used to produce the CRAN binary packages: however as Apple does not
ship .pc files for its system libraries such as expat, libcurl, libxml2, sqlite3 and ‘zlib’, it may well not
find information on these. Some substitutes are available from https://github.com/R-macos/recipes/tree/
master/stubs/pkgconfig-darwin and are installed on the CRAN package builders.
33
It is not wise to check the version of pkg-config as it is sometimes a link to pkgconf, a separate project with
a different version series.
34
but not all projects get this right when only a static library is installed, so it is often necessary to try in turn
pkg-config --libs and pkg-config --static --libs.
Chapter 1: Creating R packages 25
If using Autoconf it is good practice to include all the Autoconf sources in the package (and
required for an Open Source package and tested by R CMD check --as-cran). This will include
the file configure.ac35 in the top-level directory of the package. If extensions written in m4 are
needed, these should be included under the directory tools and included from configure.ac
via e.g.,
m4_include([tools/ax_pthread.m4])
Alternatively, Autoconf can be asked to search all .m4 files in a directory by including something
like36
AC_CONFIG_MACRO_DIR([tools/m4])
One source of such extensions is the ‘Autoconf Archive’ (https://www.gnu.org/software/
autoconf-archive/. It is not safe to assume this is installed on users’ machines, so the exten-
sion should be shipped with the package (taking care to comply with its licence).
BLAS_LIBS
A macro containing the BLAS libraries used when building R. This may need to
be included in PKG_LIBS. Beware that if it is empty then the R executable will
contain all the double-precision and double-complex BLAS routines, but no single-
precision nor complex routines. If BLAS_LIBS is included, then FLIBS also needs to
be38 included following it, as most BLAS libraries are written at least partially in
Fortran. However, it can be omitted if the package contains Fortran source code as
that will add FLIBS to the link line.
LAPACK_LIBS
A macro containing the LAPACK libraries (and paths where appropriate) used when
building R. This may need to be included in PKG_LIBS. It may point to a dynamic
library libRlapack which contains the main double-precision LAPACK routines as
well as those double-complex LAPACK routines needed to build R, or it may point
to an external LAPACK library, or may be empty if an external BLAS library also
contains LAPACK.
[libRlapack includes all the double-precision LAPACK routines which were current
in 2003 and a few more recent ones: a list of which routines are included is in file
src/modules/lapack/README. Note that an external LAPACK/BLAS library need
not do so, as some were ‘deprecated’ (and not compiled by default) in LAPACK
3.6.0 in late 2015.]
For portability, the macros BLAS_LIBS and FLIBS should always be included after
LAPACK_LIBS (and in that order).
SAFE_FFLAGS
A macro containing flags which are needed to circumvent over-optimization of
FORTRAN code: it is might be ‘-g -O2 -ffloat-store’ or ‘-g -O2 -msse2
-mfpmath=sse’ on ‘ix86’ platforms using gfortran. Note that this is not an
additional flag to be used as part of PKG_FFLAGS, but a replacement for FFLAGS.
See the example later in this section.
Setting certain macros in Makevars will prevent R CMD SHLIB setting them: in particular if
Makevars sets ‘OBJECTS’ it will not be set on the make command line. This can be useful in
conjunction with implicit rules to allow other types of source code to be compiled and included
in the shared object. It can also be used to control the set of files which are compiled, either by
excluding some files in src or including some files in subdirectories. For example
OBJECTS = 4dfp/endianio.o 4dfp/Getifh.o R4dfp-object.o
Note that Makevars should not normally contain targets, as it is included before the de-
fault makefile and make will call the first target, intended to be all in the default makefile.
If you really need to circumvent that, use a suitable (phony) target all before any actual
targets in Makevars.[win]: for example package fastICA (https://CRAN.R-project.org/
package=fastICA) used to have
PKG_LIBS = @BLAS_LIBS@
all: $(SHLIB)
slamc.o: slamc.f
$(FC) $(SLAMC_FFLAGS) -c -o slamc.o slamc.f
38
at least on Unix-alikes: the Windows build currently resolves such dependencies to a static Fortran library
when Rblas.dll is built.
Chapter 1: Creating R packages 27
needed to ensure that the LAPACK routines find some constants without infinite looping. The
Windows equivalent was
all: $(SHLIB)
slamc.o: slamc.f
$(FC) $(SAFE_FFLAGS) -c -o slamc.o slamc.f
(since the other macros are all empty on that platform, and R’s internal BLAS was not used).
Note that the first target in Makevars will be called, but for back-compatibility it is best named
all.
If you want to create and then link to a library, say using code in a subdirectory, use something
like
.PHONY: all mylibs
all: $(SHLIB)
$(SHLIB): mylibs
mylibs:
(cd subdir; $(MAKE))
Be careful to create all the necessary dependencies, as there is no guarantee that the dependencies
of all will be run in a particular order (and some of the CRAN build machines use multiple
CPUs and parallel makes). In particular,
all: mylibs
does not suffice. GNU make does allow the construct
.NOTPARALLEL: all
all: mylibs $(SHLIB)
but that is not portable. dmake and pmake allow the similar .NO_PARALLEL, also not portable:
some variants of pmake accept .NOTPARALLEL as an alias for .NO_PARALLEL.
Note that on Windows it is required that Makevars[.win, .ucrt] does create a DLL: this
is needed as it is the only reliable way to ensure that building a DLL succeeded. If you want
to use the src directory for some purpose other than building a DLL, use a Makefile.win or
Makefile.ucrt file.
It is sometimes useful to have a target ‘clean’ in Makevars, Makevars.win or Makevars.ucrt:
this will be used by R CMD build to clean up (a copy of) the package sources. When it is run by
build it will have fewer macros set, in particular not $(SHLIB), nor $(OBJECTS) unless set in
the file itself. It would also be possible to add tasks to the target ‘shlib-clean’ which is run
by R CMD INSTALL and R CMD SHLIB with options --clean and --preclean.
Avoid the use of default (also known as ‘implicit’ rules) in makefiles, as these are make-
specific. Even when mandated by POSIX – GNU make does not comply and this has broken
package installation.
An unfortunately common error is to have
all: $(SHLIB) clean
which asks make to clean in parallel with compiling the code. Not only does this lead to hard-
to-debug installation errors, it wipes out all the evidence of any error (from a parallel make
or not). It is much better to leave cleaning to the end user using the facilities in the previous
paragraph.
If you want to run R code in Makevars, e.g. to find configuration information, please do
ensure that you use the correct copy of R or Rscript: there might not be one in the path at all,
or it might be the wrong version or architecture. The correct way to do this is via
"$(R_HOME)/bin$(R_ARCH_BIN)/Rscript" filename
Chapter 1: Creating R packages 28
39
https://www.openmp.org/, https://en.wikipedia.org/wiki/OpenMP, https://hpc-tutorials.llnl.gov/
openmp/
Chapter 1: Creating R packages 29
be used inside #ifdef _OPENMP: note that some toolchains used for R (including Apple’s for
macOS40 and some others using clang41 ) have no OpenMP support at all, not even omp.h.
For example, a package with C code written for OpenMP should have in src/Makevars the
lines
PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CFLAGS)
Note that the macro SHLIB_OPENMP_CXXFLAGS applies to the default C++ compiler and not
necessarily to the C++17/20/23/26 compiler: users of the latter should do their own configure
checks. If you do use your own checks, make sure that OpenMP support is complete by compiling
and linking an OpenMP-using program: on some platforms the runtime library is optional and
on others that library depends on other optional libraries.
Some care is needed when compilers are from different families which may use different
OpenMP runtimes (e.g. clang vs GCC including gfortran, although it is often possible to use
the clang runtime with GCC but not vice versa: however gfortran >= 9 may generate calls
not in the clang runtime). For a package with Fortran code using OpenMP the appropriate
lines are
PKG_FFLAGS = $(SHLIB_OPENMP_FFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CFLAGS)
as the C compiler will be used to link the package code. There are platforms on which this
does not work for some OpenMP-using code and installation will fail. Since R >= 3.6.2 the best
alternative for a package with only Fortran sources using OpenMP is to use
USE_FC_TO_LINK =
PKG_FFLAGS = $(SHLIB_OPENMP_FFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_FFLAGS)
in src/Makevars, src/Makevars.win or Makevars.ucrt. Note however, that when this is
used $(FLIBS) should not be included in PKG_LIBS since it is for linking Fortran-compiled code
by the C compiler.
Common platforms may inline all OpenMP calls and so tolerate the omission of the OpenMP
flag from PKG_LIBS, but this usually results in an installation failure with a different compiler or
compilation flags. So cross-check that e.g. -fopenmp appears in the linking line in the installation
logs.
It is not portable to use OpenMP with more than one of C, C++ and Fortran in a single
package since it is not uncommon that the compilers are of different families.
For portability, any C/C++ code using the omp_* functions should include the omp.h header:
some compilers (but not all) include it when OpenMP mode is switched on (e.g. via flag
-fopenmp).
There is nothing42 to say what version of OpenMP is supported: version 4.0 (and much of 4.5
or 5.0) is supported by recent versions of the Linux and Windows platforms, but portable pack-
ages cannot assume that end users have recent versions. Apple clang on macOS has no OpenMP
support. https://www.openmp.org/resources/openmp-compilers-tools/ gives some idea of
what compilers support what versions. Note that support for Fortran compilers is often less up-
to-date and that page suggests it is unwise to rely on a version later than 3.1. Which introduced
a Fortran OpenMP module, so Fortran users of OpenMP should include
use omp_lib
40
There are somewhat fragile workarounds: see https://mac.r-project.org/openmp/.
41
Default builds of LLVM clang 3.8.0 and later have support for OpenMP, but the libomp run-time library
may not be installed.
42
In most implementations the _OPENMP macro has value a date which can be mapped to an OpenMP version:
for example, value 201307 is the date of version 4.0 (July 2013). However this may be used to denote the
latest version which is partially supported, not that which is fully implemented.
Chapter 1: Creating R packages 30
Rarely, using OpenMP with clang on Linux generates calls in libatomic, resulting in loading
messages like
undefined symbol: __atomic_compare_exchange
undefined symbol: __atomic_load
The workaround is to link with -latomic (having checked it exists).
The performance of OpenMP varies substantially between platforms. The Windows im-
plementation has substantial overheads, so is only beneficial if quite substantial tasks are run
in parallel. Also, on Windows new threads are started with the default43 FPU control word,
so computations done on OpenMP threads will not make use of extended-precision arithmetic
which is the default for the main process.
Do not include these macros unless your code does make use of OpenMP (possibly for C++
via included external headers): this can result in the OpenMP runtime being linked in, threads
being started, . . . .
Calling any of the R API from threaded code is ‘for experts only’ and strongly discouraged.
Many functions in the R API modify internal R data structures and might corrupt these data
structures if called simultaneously from multiple threads. Most R API functions can signal
errors, which must only happen on the R main thread. Also, external libraries (e.g. LAPACK)
may not be thread-safe.
Packages are not standard-alone programs, and an R process could contain more than one
OpenMP-enabled package as well as other components (for example, an optimized BLAS) mak-
ing use of OpenMP. So careful consideration needs to be given to resource usage. OpenMP
works with parallel regions, and for most implementations the default is to use as many threads
as ‘CPUs’ for such regions. Parallel regions can be nested, although it is common to use only
a single thread below the first level. The correctness of the detected number of ‘CPUs’ and the
assumption that the R process is entitled to use them all are both dubious assumptions. One
way to limit resources is to limit the overall number of threads available to OpenMP in the R
process: this can be done via environment variable OMP_THREAD_LIMIT, where implemented.44
Alternatively, the number of threads per region can be limited by the environment variable
OMP_NUM_THREADS or API call omp_set_num_threads, or, better, for the regions in your code as
part of their specification. E.g. R uses45
#pragma omp parallel for num_threads(nthreads) ...
That way you only control your own code and not that of other OpenMP users.
Note that setting environment variables to control OpenMP is implementation-dependent and
may need to be done outside the R process or before any use of OpenMP (which might be by
another process or R itself). Also, implementation-specific variables such as KMP_THREAD_LIMIT
might take precedence.
(and the plural version is also accepted on some systems/versions). For other platforms the
specification is
PKG_CPPFLAGS = -D_REENTRANT
PKG_LIBS = -lpthread
(and note that the library name is singular). This is what -pthread does on all known current
platforms (although earlier versions of OpenBSD used a different library name).
For a tutorial see https://hpc-tutorials.llnl.gov/posix/.
POSIX threads are not normally used on Windows which has its own native concepts of
threads: however, recent toolchains do provide the pthreads header and library.
The presence of a working pthreads implementation cannot be unambiguously determined
without testing for yourself: however, that ‘_REENTRANT’ is defined in C/C++ code is a good
indication.
Note that not all pthreads implementations are equivalent as parts are optional (see
https://pubs.opengroup.org/onlinepubs/009695399/basedefs/pthread.h.html): for ex-
ample, macOS lacks the ‘Barriers’ option.
See also the comments on thread-safety and performance under OpenMP: on all known R
platforms OpenMP is implemented via pthreads and the known performance issues are in the
latter.
$(SHLIB): Csdp/lib/libsdp.a
Csdp/lib/libsdp.a:
@(cd Csdp/lib && $(MAKE) libsdp.a \
CC="$(CC)" CFLAGS="$(CFLAGS) $(CPICFLAGS)" AR="$(AR)" RANLIB="$(RANLIB)")
Note the quotes: the macros can contain spaces, e.g. CC = "gcc -m64 -std=gnu99". Several
authors have forgotten about parallel makes: the static library in the subdirectory must be
Chapter 1: Creating R packages 32
made before the shared object ($(SHLIB)) and so the latter must depend on the former. Others
forget the need46 for position-independent code.
We really do not recommend using src/Makefile instead of src/Makevars, and as the
example above shows, it is not necessary.
46
A few OSes (AIX, Windows) do not need special flags for such code, but most do—although compilers will
often generate PIC code when not asked to do so.
Chapter 1: Creating R packages 33
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
echo "could not determine R_HOME"
exit 1
fi
CC=`"${R_HOME}/bin/R" CMD config CC`
CFLAGS=`"${R_HOME}/bin/R" CMD config CFLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
dnl for 64-bit ODBC need SQL[U]LEN, and it is unclear where they are defined.
AC_CHECK_TYPES([SQLLEN, SQLULEN], , , [# include <sql.h>])
dnl for unixODBC header
AC_CHECK_SIZEOF(long, 4)
The same compiler is used for both fixed-form and free-form Fortran code (with different
file extensions and possibly different flags). Macro PKG_FFLAGS can be used for package-specific
flags: for the un-encountered case that both are included in a single package and that different
flags are needed for the two forms, macro PKG_FCFLAGS is also available for free-form Fortran.
The code used to build R allows a ‘Fortran 90’ compiler to be selected as ‘FC’, so platforms
might be encountered which only support Fortran 90. However, Fortran 95 is supported on all
known platforms.
Most compilers specified by ‘FC’ will accept most Fortran 2003, 2008 or 2018 code: such
code should still use file extension .f90. Most current platforms use gfortran where you might
need to include -std=f2003, -std=f2008 or (from version 8) -std=f2018 in PKG_FFLAGS or
PKG_FCFLAGS: the default is ‘GNU Fortran’, currently Fortran 2018 (but Fortran 95 prior to
gfortran 8) with non-standard extensions. The other compilers in current use (LLVM’s flang
(called flang-new before version 20) and Intel’s ifx) default to Fortran 201848 .
It is good practice to describe a Fortran version requirement in DESCRIPTION’s
‘SystemRequirements’ field. Note that this is purely for information: the package also needs a
configure script to determine the compiler and set appropriate option(s) and test that the
features needed from the standard are actually supported.
The Fortran 2023 released in Nov 2023: as usual compiler vendors are introducing sup-
port incrementally. For Intel’s ifx see https://www.intel.com/content/www/us/en/
developer/articles/technical/fortran-language-and-openmp-features-in-ifx.html#
Fortran%20Standards. For LLVM’s flang see https://flang.llvm.org/docs/F202X.html.
gfortran does not have complete support even for the 2008 and 2018 standards, but the option
-std=f2023 is supported from version 14.1.
Modern versions of Fortran support modules, whereby compiling one source file creates a
module file which is then included in others. (Module files typically have a .mod extension: they
do depend on the compiler used and so should never be included in a package.) This creates a
dependence which make will not know about and often causes installation with a parallel make
to fail. Thus it is necessary to add explicit dependencies to src/Makevars to tell make the
constraints on the order of compilation. For example, if file iface.f90 creates a module ‘iface’
used by files cmi.f90 and dmi.f90 then src/Makevars needs to contain something like
cmi.o dmi.o: iface.o
Some maintainers have found it difficult to find all the module dependencies which leads to
hard-to-reproduce installation failures. There are tools available to find these, including the
Intel compiler’s flag -gen-dep and makedepf90.
Note that it is not portable (although some platforms do accept it) to define a module of the
same name in multiple source files.
48
but was said to have complete support only from version 2023.0.0.
49
Some changes are linked from https://isocpp.org/std/standing-documents/
sd-6-sg10-feature-test-recommendations: there were also additional deprecations.
Chapter 1: Creating R packages 35
The support in R for these standards has varied over the years: this version of the manual
only describes R 4.3.0 and later. For details of earlier versions, see the corresponding section in
their manuals.
The default standard for compiling R packages was changed to C++17 in R 4.3.0 if supported,
and from R 4.4.0 only a C++17 compiler will be selected as the default C++ compiler.
What standard a C++ compiler aims to support can be hard to determine: the value50 of __
cplusplus may help but some compilers use it to denote a standard which is partially supported
and some the latest standard which is (almost) fully supported. On a Unix-alike configure will
try to identify a compiler and flags for each of the standards: this relies heavily on the reported
values of __cplusplus.
The webpage https://en.cppreference.com/w/cpp/compiler_support gives some infor-
mation on which compiler versions are known to support recent C++ features.
C++ standards have deprecated and later removed features. Be aware that some current com-
pilers still accept removed features in C++17 mode, such as std::unary_function (deprecated
in C++11, removed in C++17).
For maximal portability a package should specify the standard it requires for code in its
src directory by including something like ‘C++14’ in the ‘SystemRequirements’ field of the
DESCRIPTION file, e.g.
SystemRequirements: C++14
If it has a Makevars file (or Makevars.win or Makevars.ucrt on Windows) this should include
the line
CXX_STD = CXX14
On the other hand, specifying C++1151 when the code is valid under C++14 or C++17 reduces
future portability.
Code needing C++14 or later features can check for their presence via ‘SD-6 feature tests’52 .
Such a check could be
#include <memory> // header where this is defined
#if defined(__cpp_lib_make_unique) && (__cpp_lib_make_unique >= 201304)
using std::make_unique;
#else
// your emulation
#endif
C++17, C++20, C++23 and C++26 (from R 4.5.0) can be specified in an analogous way.
Note that C++17 or later ‘support’ does not mean complete support: use feature tests as
well as resources such as https://en.cppreference.com/w/cpp/compiler_support, https://
gcc.gnu.org/projects/cxx-status.html and https://clang.llvm.org/cxx_status.html
to see if the features you want to use are widely implemented.
Attempts to specify an unknown C++ standard are silently ignored: recent versions of R throw
an error for C++98 and for known standards for which no compiler+flags has been detected.
If a package using C++ has a configure script it is essential that the script selects the correct
C++ compiler and standard, via something like
CXX17=`"${R_HOME}/bin/R" CMD config CXX17`
50
Values 201103L, 201402L, 201703L and 202002L are most commonly used for C++11, C++14, C++17 and C++20
respectively, but some compilers set 1L. For C++23 all that can currently be assumed is a value greater than
that for C++20: for example g++ 12 uses 202100L and clang++ (LLVM 15, Apple 14) uses 202101L.
51
Often historically used to mean ‘not C++98’
52
See https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations or
https://en.cppreference.com/w/cpp/experimental/feature_test. It seems a reasonable assumption that
any compiler promising some C++14 conformance will provide these—e.g. g++ 4.9.x did but 4.8.5 did not.
Chapter 1: Creating R packages 36
1.2.5 C standards
C has had standards C89/C90, C99, C11, C17 (also known as C18), and C23 (published in
2024). C11 was a minor change to C99 which introduced some new features and made others
optional, and C17 is a ‘bug-fix’ update to C11. On the other hand, C23 makes extensive changes,
including making bool, true and false reserved words, finally disallowing K&R-style function
declarations and changing the formerly deprecated meaning of function declarations with an
empty parameter list to now mean no parameters.53 (There are many other additions: see for
example https://en.cppreference.com/w/c/23.)
As from R 4.5.0, R’s configure script chooses a compiler option which selects C23 if one is
available. Some compilers (including gcc 15) default to C23 and most others from 2022/3 and
later have such an option.
The configure script in recent previous versions of R aimed to choose a C compiler which
supported C11: as the default in recent versions of gcc (prior to 15), LLVM clang and Apple
clang is C17, that is what is likely to be chosen. On the other hand, until R 4.3.0 the makefiles
for the Windows build specified C99 and up to R 4.4.3 used the compiler default which for the
recommended compiler was C17.
Packages may want to either avoid or embrace the changes in C23, and can do so via specifying
‘USE_Cnn’ for 17, 23, 90 or 99 in the ‘SystemRequirements’ field of their DESCRIPTION file
of a package depending on ‘R (>= 4.3.0)’. Those using a configure script should set the
corresponding compiler and flags, for example using
CC=`"${R_HOME}/bin/R" CMD config CC23`
CFLAGS=`"${R_HOME}/bin/R" CMD config C23FLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`
However, not all platforms will have a C23 compiler: the first line here will give an empty value
if no C23 compiler was found.
The (claimed) C standard in use can be checked by the macro __STDC_VERSION__. This is
undefined in C89/C90 and should have values 199901L, 201112L and 201710L for C99, C11 and
C17. The definitive value for C23 is 202311L but some compilers54 are currently using 202000L
and requiring the standard to be specified as c2x. C23 has macros similar to C++ ‘feature tests’
for many of its changes, for example __STDC_VERSION_LIMITS_H__.
However, note the ‘claimed’ as no compiler had 100% conformance, and it is better to use
configure to test for the feature you want to use than to condition on the value of __STDC_
VERSION__. In particular, C11 alignment functionality such as _Alignas and aligned_alloc is
not implemented on Windows.
End users installing a source package can specify a standard by something like R CMD INSTALL
--use-C17. This overrides the ‘SystemRequirements’ field, but not any configure file.
CFLAGS and CXXFLAGS will need to include CPICFLAGS and CXXPICFLAGS respectively unless (as
below) cmake is asked to generate PIC code.
Setting these (and more) as environment variables controls the behaviour of cmake
(https://cmake.org/cmake/help/latest/manual/cmake-env-variables.7.html#
manual:cmake-env-variables(7)), but it may be desirable to translate these into native
settings such as
CMAKE_C_COMPILER
CMAKE_C_FLAGS
CMAKE_CXX_COMPILER
CMAKE_CXX_FLAGS
CMAKE_INCLUDE_PATH
CMAKE_LIBRARY_PATH
CMAKE_SHARED_LINKER_FLAGS_INIT
CMAKE_OSX_DEPLOYMENT_TARGET
and it is often necessary to ensure a static library of PIC code is built by
-DBUILD_SHARED_LIBS:bool=OFF
-DCMAKE_POSITION_INDEPENDENT_CODE:bool=ON
If R is to be detected or used, this must be the build being used for package installation –
"${R_HOME}"/bin/R.
To fix ideas, consider a package with sources for a library myLib under src/libs. Two
approaches have been used. It is often most convenient to build the external software in a
directory other than its sources (particularly during development when the build directory can
be removed between builds rather than attempting to clean the sources) – this is illustrated in
the first approach.
1. Use the package’s configure script to create a static library src/build/libmyLib.a.
This can then be treated in the same way as external software, for example having in
src/Makevars
PKG_CPPFLAGS = -Ilibs/include
PKG_LIBS = build/libmyLib.a
(-Lbuild -lmyLib could also be used but this explicit specification avoids any confusion
with dynamic libraries of the same name.)
The configure script will need to contain something like (for C code)
: ${R_HOME=`R RHOME`}
if test -z "${R_HOME}"; then
echo "could not determine R_HOME"
exit 1
fi
CC=`"${R_HOME}/bin/R" CMD config CC`
CFLAGS=`"${R_HOME}/bin/R" CMD config CFLAGS`
CPPFLAGS=`"${R_HOME}/bin/R" CMD config CPPFLAGS`
LDFLAGS=`"${R_HOME}/bin/R" CMD config LDFLAGS`
cd src
mkdir build && cd build
cmake -S ../libs \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS:bool=OFF \
-DCMAKE_POSITION_INDEPENDENT_CODE:bool=ON
${MAKE}
Chapter 1: Creating R packages 39
$(SHLIB): mylibs
mylibs:
(cd libs; \
CC="$(CC)" CFLAGS="$(CFLAGS)" \
CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \
cmake . \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS:bool=OFF \
-DCMAKE_POSITION_INDEPENDENT_CODE:bool=ON; \
$(MAKE))
the compiler and other settings having been set as Make variables by an R makefile included
by INSTALL before src/Makevars.
A complication is that on macOS cmake (where installed) is commonly not on the path but
at /Applications/CMake.app/Contents/bin/cmake. One way to work around this is for the
package’s configure script to include
if test -z "$CMAKE"; then CMAKE="`which cmake`"; fi
if test -z "$CMAKE"; then CMAKE=/Applications/CMake.app/Contents/bin/cmake; fi
if test -f "$CMAKE"; then echo "no 'cmake' command found"; exit 1; fi
and for the second approach to substitute CMAKE into src/Makevars. This also applies to the
ancillary command ctest, if used.
55
On systems which use sub-architectures, architecture-specific versions such as ~/.R/check.Renviron.x64 take
precedence.
Chapter 1: Creating R packages 40
You may need to set the environment variable TMPDIR to point to a suitable writable
directory with a path not containing spaces – use forward slashes for the separators.
Also, the directory needs to be on a case-honouring file system (some network-
mounted file systems are not).
in an empty session with only the base namespace loaded. (Namespaces and packages can
be loaded very early in the session, before the default packages are available, so packages
should work then.)
10. The R files are checked for correct calls to library.dynam. Package startup functions
are checked for correct argument lists and (incorrect) calls to functions which modify the
search path or inappropriately generate messages. The R code is checked for possible prob-
lems using codetools (https://CRAN.R-project.org/package=codetools). In addition,
it is checked whether S3 methods have all the arguments of the corresponding generic, and
whether the final argument of replacement functions is called ‘value’. All foreign function
calls (.C, .Fortran, .Call and .External calls) are tested to see if they have a PACKAGE
argument, and if not, whether the appropriate DLL might be deduced from the namespace
of the package. Any other calls are reported. (The check is generous, and users may want to
supplement this by examining the output of tools::checkFF("mypkg", verbose=TRUE),
especially if the intention were to always use a PACKAGE argument)
11. The Rd files are checked for correct syntax and metadata, including the presence of the
mandatory fields (\name, \alias, \title and \description). The Rd name and title are
checked for being non-empty, and there is a check for missing cross-references (links).
12. A check is made for missing documentation entries, such as undocumented user-level objects
in the package.
13. Documentation for functions, data sets, and S4 classes is checked for consistency with the
corresponding code.
14. It is checked whether all function arguments given in \usage sections of Rd files are docu-
mented in the corresponding \arguments section.
15. The data directory is checked for non-ASCII characters and for the use of reasonable levels
of compression.
16. C, C++ and Fortran source and header files57 are tested for portable (LF-only) line endings.
If there is a Makefile or Makefile.in or Makevars or Makevars.in file under the src
directory, it is checked for portable line endings and the correct use of ‘$(BLAS_LIBS)’ and
‘$(LAPACK_LIBS)’
Compiled code is checked for symbols corresponding to functions which might terminate
R or write to stdout/stderr instead of the console. Note that the latter might give false
positives in that the symbols might be pulled in with external libraries and could never
be called. Windows58 users should note that the Fortran and C++ runtime libraries are
examples of such external libraries.
17. Some checks are made of the contents of the inst/doc directory. These always include
checking for files that look like leftovers, and if suitable tools (such as qpdf) are available,
checking that the PDF documentation is of minimal size.
18. The examples provided by the package’s documentation are run. (see Chapter 2 [Writing
R documentation files], page 83, for information on using \examples to create executable
example code.) If there is a file tests/Examples/pkg-Ex.Rout.save, the output of running
the examples is compared to that file.
Of course, released packages should be able to run at least their own examples. Each
example is run in a ‘clean’ environment (so earlier examples cannot be assumed to have
been run), and with the variables T and F redefined to generate an error unless they are set
in the example: See Section “Logical vectors” in An Introduction to R.
57
An exception is made for subdirectories with names starting ‘win’ or ‘Win’.
58
on most other platforms such runtime libraries are dynamic, but static libraries are currently used on Windows
because the toolchain is not a standard part of the OS.
Chapter 1: Creating R packages 42
19. If the package sources contain a tests directory then the tests specified in that direc-
tory are run. (Typically they will consist of a set of .R source files and target output
files .Rout.save.) Please note that the comparison will be done in the end user’s lo-
cale, so the target output files should be ASCII if at all possible. (The command line
option --test-dir=foo may be used to specify tests in a non-standard location. For ex-
ample, unusually slow tests could be placed in inst/slowTests and then R CMD check
--test-dir=inst/slowTests would be used to run them. Other names that have been
suggested are, for example, inst/testWithOracle for tests that require Oracle to be in-
stalled, inst/randomTests for tests which use random values and may occasionally fail by
chance, etc.)
20. The R code in package vignettes (see Section 1.4 [Writing package vignettes], page 45) is
executed, and the vignettes re-made from their sources as a check of completeness of the
sources (unless there is a ‘BuildVignettes’ field in the package’s DESCRIPTION file with a
false value). If there is a target output file .Rout.save in the vignette source directory, the
output from running the code in that vignette is compared with the target output file and
any differences are reported (but not recorded in the log file). (If the vignette sources are
in the deprecated location inst/doc, do mark such target output files to not be installed
in .Rinstignore.)
If there is an error59 in executing the R code in vignette foo.ext, a log file foo.ext.log is
created in the check directory. The vignettes are re-made in a copy of the package sources
in the vign_test subdirectory of the check directory, so for further information on errors
look in directory pkgname/vign_test/vignettes. (It is only retained if there are errors or
if environment variable _R_CHECK_CLEAN_VIGN_TEST_ is set to a false value.)
21. The PDF version of the package’s manual is created (to check that the Rd files can be
converted successfully). This needs LATEX and suitable fonts and LATEX packages to be
installed. See Section “Making the manuals” in R Installation and Administration for
further details.
22. Optionally (including by R CMD check --as-cran) the HTML version of the manual is cre-
ated and checked for compliance with the HTML5 standard. This requires a recent version60
of ‘HTML Tidy’, either on the path or at a location specified by environment variable R_
TIDYCMD. Up-to-date versions can be installed from http://binaries.html-tidy.org/
.
All these tests are run with collation set to the C locale, and for the examples and tests with
environment variable LANGUAGE=en: this is to minimize differences between platforms.
Use R CMD check --help to obtain more information about the usage of the R package
checker. A subset of the checking steps can be selected by adding command-line options. It
also allows customization by setting environment variables _R_CHECK_*_ as described in Section
“Tools” in R Internals: a set of these customizations similar to those used by CRAN can be
selected by the option --as-cran (which works best if Internet access is available). Some Win-
dows users may need to set environment variable R_WIN_NO_JUNCTIONS to a non-empty value.
The test of cyclic declarations61 in DESCRIPTION files needs repositories (including CRAN) set:
do this in ~/.Rprofile, by e.g.
options(repos = c(CRAN="https://cran.r-project.org"))
59
or if option --use-valgrind is used or environment variable _R_CHECK_ALWAYS_LOG_VIGNETTE_OUTPUT_ is set
to a true value or if there are differences from a target output file
60
for the most comprehensive checking this should be 5.8.0 or later: any for which tidy --version does not
report a version number will be too old – this includes the 2006 version shipped with macOS.
61
For example, in early 2014 gdata (https://CRAN.R-project.org/package=gdata) declared ‘Imports: gtools’
and gtools (https://CRAN.R-project.org/package=gtools) declared ‘Imports: gdata’.
Chapter 1: Creating R packages 43
directory. In addition, directories from source control systems62 or from eclipse63 , directories
with names check, chm, or ending .Rcheck or Old or old and files GNUMakefile64 , Read-and-
delete-me or with base names starting with ‘.#’, or starting and ending with ‘#’, or ending
in ‘~’, ‘.bak’ or ‘.swp’, are excluded by default65 . In addition, same-package tarballs (from
previous builds) and their binary forms will be excluded from the top-level directory, as well as
those files in the R, demo and man directories which are flagged by R CMD check as having invalid
names.
Use R CMD build --help to obtain more information about the usage of the R package
builder.
Unless R CMD build is invoked with the --no-build-vignettes option (or the package’s
DESCRIPTION contains ‘BuildVignettes: no’ or similar), it will attempt to (re)build the vi-
gnettes (see Section 1.4 [Writing package vignettes], page 45) in the package. To do so it installs
the current package into a temporary library tree, but any dependent packages need to be
installed in an available library tree (see the Note: at the top of this section).
Similarly, if the .Rd documentation files contain any \Sexpr macros (see Section 2.12 [Dy-
namic pages], page 97), the package will be temporarily installed to execute them. Post-execution
binary copies of those pages containing build-time macros will be saved in build/partial.rdb.
If there are any install-time or render-time macros, a .pdf version of the package manual will
be built and installed in the build subdirectory. (This allows CRAN or other repositories to
display the manual even if they are unable to install the package.) This can be suppressed by
the option --no-manual or if package’s DESCRIPTION contains ‘BuildManual: no’ or similar.
One of the checks that R CMD build runs is for empty source directories. These are in
most (but not all) cases unintentional, if they are intentional use the option --keep-empty-
dirs (or set the environment variable _R_BUILD_KEEP_EMPTY_DIRS_ to ‘TRUE’, or have a
‘BuildKeepEmpty’ field with a true value in the DESCRIPTION file).
The --resave-data option allows saved images (.rda and .RData files) in the data directory
to be optimized for size. It will also compress tabular files and convert .R files to saved images.
It can take values no, gzip (the default if this option is not supplied, which can be changed
by setting the environment variable _R_BUILD_RESAVE_DATA_) and best (equivalent to giving it
without a value), which chooses the most effective compression. Using best adds a dependence
on R (>= 2.10) to the DESCRIPTION file if bzip2 or xz compression is selected for any of the
files. If this is thought undesirable, --resave-data=gzip (which is the default if that option is
not supplied) will do what compression it can with gzip. A package can control how its data
is resaved by supplying a ‘BuildResaveData’ field (with one of the values given earlier in this
paragraph) in its DESCRIPTION file.
The --compact-vignettes option will run tools::compactPDF over the PDF files in
inst/doc (and its subdirectories) to losslessly compress them. This is not enabled by default
(it can be selected by environment variable _R_BUILD_COMPACT_VIGNETTES_) and needs qpdf
(https://qpdf.sourceforge.io/) to be available.
It can be useful to run R CMD check --check-subdirs=yes on the built tarball as a final
check on the contents.
Where a non-POSIX file system is in use which does not utilize execute permissions, some
care is needed with permissions. This applies on Windows and to e.g. FAT-formatted drives and
SMB-mounted file systems on other OSes. The ‘mode’ of the file recorded in the tarball will be
whatever file.info() returns. On Windows this will record only directories as having execute
62
called CVS or .svn or .arch-ids or .bzr or .git (but not files called .git) or .hg.
63
called .metadata.
64
which is an error: GNU make uses GNUmakefile.
65
see tools:::.hidden_file_exclusions and tools:::get_exclude_patterns() for further excluded files and
file patterns, respectively.
Chapter 1: Creating R packages 45
permission and on other OSes it is likely that all files have reported ‘mode’ 0777. A particular
issue is packages being built on Windows which are intended to contain executable scripts such as
configure and cleanup: R CMD build ensures those two are recorded with execute permission.
Directory build of the package sources is reserved for use by R CMD build: it contains infor-
mation which may not easily be created when the package is installed, including index informa-
tion on the vignettes and, rarely, information on the help pages and perhaps a copy of the PDF
reference manual (see above).
A special case is package vignettes. Vignettes are documents in PDF or HTML format ob-
tained from plain-text literate source files from which R knows how to extract R code and create
output (in PDF/HTML or intermediate LATEX). Vignette engines do this work, using “tangle”
and “weave” functions respectively. Sweave, provided by the R distribution, is the default
engine. Other vignette engines besides Sweave are supported; see Section 1.4.2 [Non-Sweave
vignettes], page 48.
Package vignettes have their sources in subdirectory vignettes of the package sources. Note
that the location of the vignette sources only affects R CMD build and R CMD check: the tarball
built by R CMD build includes in inst/doc the components intended to be installed.
Sweave vignette sources are normally given the file extension .Rnw or .Rtex, but for historical
reasons extensions66 .Snw and .Stex are also recognized. Sweave allows the integration of LATEX
documents: see the Sweave help page in R and the Sweave vignette in package utils for details
on the source document format.
Package vignettes are tested by R CMD check by executing all R code chunks they contain
(except those marked for non-evaluation, e.g., with option eval=FALSE for Sweave). The R
working directory for all vignette tests in R CMD check is a copy of the vignette source directory.
Make sure all files needed to run the R code in the vignette (data sets, . . . ) are accessible
by either placing them in the inst/doc hierarchy of the source package or by using calls to
system.file(). All other files needed to re-make the vignettes (such as LATEX style files, BibTEX
input files and files for any figures not created by running the code in the vignette) must be in
the vignette source directory. R CMD check will check that vignette production has succeeded by
comparing modification times of output files in inst/doc with the source in vignettes.
R CMD build will automatically67 create the (PDF or HTML versions of the) vignettes in
inst/doc for distribution with the package sources. By including the vignette outputs in the
package sources it is not necessary that these can be re-built at install time, i.e., the package au-
thor can use private R packages, screen snapshots and LATEX extensions which are only available
on their machine.68
By default R CMD build will run Sweave on all Sweave vignette source files in vignettes. If
Makefile is found in the vignette source directory, then R CMD build will try to run make after
the Sweave runs, otherwise texi2pdf is run on each .tex file produced.
The first target in the Makefile should take care of both creation of PDF/HTML files and
cleaning up afterwards (including after Sweave), i.e., delete all files that shall not appear in the
final package archive. Note that if the make step runs R it needs to be careful to respect the
environment values of R_LIBS and R_HOME69 . Finally, if there is a Makefile and it has a ‘clean:’
target, make clean is run.
All the usual caveats about including a Makefile apply. It must be portable (no GNU
extensions), use LF line endings and must work correctly with a parallel make: too many authors
have written things like
## BAD EXAMPLE
all: pdf clean
%.pdf: %.tex
66
and to avoid problems with case-insensitive file systems, lower-case versions of all these extensions.
67
unless inhibited by using ‘BuildVignettes: no’ in the DESCRIPTION file.
68
provided the conditions of the package’s license are met: many, including CRAN, see the omission of source
components as incompatible with an Open Source license.
69
R_HOME/bin is prepended to the PATH so that references to R or Rscript in the Makefile do make use of the
currently running version of R.
Chapter 1: Creating R packages 47
texi2dvi --pdf $*
clean:
rm *.tex ABC-details-*.pdf
which will start removing the source files whilst pdflatex is working.
Metadata lines can be placed in the source file, preferably in LATEX comments in the preamble.
One such is a \VignetteIndexEntry of the form
%\VignetteIndexEntry{Using Animal}
Others you may see are \VignettePackage (currently ignored), \VignetteDepends
(a comma-separated list of package names) and \VignetteKeyword (which replaced
\VignetteKeywords). These are processed at package installation time to create the saved
data frame Meta/vignette.rds. The \VignetteEngine statement is described in Section 1.4.2
[Non-Sweave vignettes], page 48. Vignette metadata can be extracted from a source file using
tools::vignetteInfo.
At install time an HTML index for all vignettes in the package is automatically cre-
ated from the \VignetteIndexEntry statements unless a file index.html exists in directory
inst/doc. This index is linked from the HTML help index for the package. If you do supply a
inst/doc/index.html file it should contain relative links only to files under the installed doc
directory, or perhaps (not really an index) to HTML help files or to the DESCRIPTION file, and
be valid HTML as confirmed via the W3C Markup Validation Service (https://validator.w3.
org) or Validator.nu (https://validator.nu/).
Sweave/Stangle allows the document to specify the split=TRUE option to create a single R
file for each code chunk: this will not work for vignettes where it is assumed that each vignette
source generates a single file with the vignette extension replaced by .R.
Do watch that PDFs are not too large – one in a CRAN package was 72MB! This is usually
caused by the inclusion of overly detailed figures, which will not render well in PDF viewers.
Sometimes it is much better to generate fairly high resolution bitmap (PNG, JPEG) figures and
include those in the PDF document.
When R CMD build builds the vignettes, it copies these and the vignette sources from direc-
tory vignettes to inst/doc. To install any other files from the vignettes directory, include
a file vignettes/.install_extras which specifies these as Perl-like regular expressions on one
or more lines. (See the description of the .Rinstignore file for full details.)
%\VignetteEncoding{UTF-8}
If the encoding is UTF-8, this can also be declared using the declaration
%\SweaveUTF8
If no declaration is given in the vignette, it will be assumed to be in the encoding declared for
the package. If there is no encoding declared in either place, then it is an error to use non-ASCII
characters in the vignette.
In any case, be aware that LATEX may require the ‘usepackage’ declaration.
Sweave() will also parse and evaluate the R code in each chunk. The R output will also
be in the current locale (or UTF-8 if so declared), and should be covered by the ‘inputenc’
declaration. One thing people often forget is that the R output may not be ASCII even for
ASCII R sources, for many possible reasons. One common one is the use of ‘fancy’ quotes: see
the R help on sQuote: note carefully that it is not portable to declare UTF-8 or CP1252 to
cover such quotes, as their encoding will depend on the locale used to run Sweave(): this can
be circumvented by setting options(useFancyQuotes="UTF-8") in the vignette.
The final issue is the encoding of figures – this applies only to PDF figures and not PNG
etc. The PDF figures will contain declarations for their encoding, but the Sweave option
pdf.encoding may need to be set appropriately: see the help for the pdf() graphics device.
As a real example of the complexities, consider the fortunes (https://CRAN.R-project.
org/package=fortunes) package version ‘1.4-0’. That package did not have a declared encod-
ing, and its vignette was in ASCII. However, the data it displays are read from a UTF-8 CSV
file and will be assumed to be in the current encoding, so fortunes.tex will be in UTF-8 in
any locale. Had read.table been told the data were UTF-8, fortunes.tex would have been
in the locale’s encoding.
Package writers who would like to supply vignette engines need to register those engines in
the package .onLoad function. For example, that function could make the call
tools::vignetteEngine("knitr", weave = vweave, tangle = vtangle,
pattern = "[.]Rmd$", package = "knitr")
(The actual registration in knitr (https://CRAN.R-project.org/package=knitr) is more com-
plicated, because it supports other input formats.) See the ?tools::vignetteEngine help topic
for details on engine registration.
Packages implicitly import the base namespace. Variables exported from other packages
with namespaces need to be imported explicitly using the directives import and importFrom.
The import directive imports all exported variables from the specified package(s). Thus the
directives
import(foo, bar)
specifies that all exported variables in the packages foo and bar are to be imported. If only
some of the exported variables from a package are needed, then they can be imported using
importFrom. The directive
importFrom(foo, f, g)
specifies that the exported variables f and g of the package foo are to be imported. Using
importFrom selectively rather than import is good practice and recommended notably when
importing from packages with more than a dozen exports and especially from those written by
others (so what they export can change in future).
To import every symbol from a package but for a few exceptions, pass the except argument
to import. The directive
import(foo, except=c(bar, baz))
imports every symbol from foo except bar and baz. The value of except should evaluate to
something coercible to a character vector, after substituting each symbol for its corresponding
string.
It is possible to export variables from a namespace which it has imported from other name-
spaces: this has to be done explicitly and not via exportPattern.
If a package only needs a few objects from another package it can use a fully qualified variable
reference in the code instead of a formal import. A fully-qualified reference to the function f in
package foo is of the form foo::f. This is slightly less efficient than a formal import and also
loses the advantage of recording all dependencies in the NAMESPACE file (but they still need to
be recorded in the DESCRIPTION file). Evaluating foo::f will cause package foo to be loaded,
but not attached, if it was not loaded already—this can be an advantage in delaying the loading
of a rarely used package. However, if foo is listed only in ‘Suggests’ or ‘Enhances’ this also
delays the check that it is installed: it is good practice to use such imports conditionally (e.g.
via requireNamespace("foo", quietly = TRUE)).
Using the foo::f form will be necessary when a package needs to use a function of the same
name from more than one namespace.
Using foo:::f instead of foo::f allows access to unexported objects. This is generally
not recommended, as the existence or semantics of unexported objects may be changed by the
package author in routine maintenance.
It is possible to specify a third argument to S3method, the function to be used as the method,
for example
S3method(print, check_so_symbols, .print.via.format)
when print.check_so_symbols is not needed.
As from R 3.6.0 one can also use S3method() directives to perform delayed registration.
With
if(getRversion() >= "3.6.0") {
S3method(pkg::gen, cls)
}
function gen.cls will get registered as an S3 method for class cls and generic gen from package
pkg only when the namespace of pkg is loaded. This can be employed to deal with situations
where the method is not “immediately” needed, and having to pre-load the namespace of pkg
(and all its strong dependencies) in order to perform immediate registration is considered too
onerous.
1.5.4 useDynLib
A NAMESPACE file can contain one or more useDynLib directives which allows shared objects that
need to be loaded.72 The directive
useDynLib(foo)
71
they will be called with two unnamed arguments, in that order.
72
NB: this will only be read in all versions of R if the package contains R code in a R directory.
Chapter 1: Creating R packages 52
registers the shared object foo73 for loading with library.dynam. Loading of registered ob-
ject(s) occurs after the package code has been loaded and before running the load hook func-
tion. Packages that would only need a load hook function to load a shared object can use the
useDynLib directive instead.
The useDynLib directive also accepts the names of the native routines that are to be used in
R via the .C, .Call, .Fortran and .External interface functions. These are given as additional
arguments to the directive, for example,
useDynLib(foo, myRoutine, myOtherRoutine)
By specifying these names in the useDynLib directive, the native symbols are resolved when
the package is loaded and R variables identifying these symbols are added to the package’s
namespace with these names. These can be used in the .C, .Call, .Fortran and .External
calls in place of the name of the routine and the PACKAGE argument. For instance, we can call
the routine myRoutine from R with the code
.Call(myRoutine, x, y)
rather than
.Call("myRoutine", x, y, PACKAGE = "foo")
There are at least two benefits to this approach. Firstly, the symbol lookup is done just
once for each symbol rather than each time the routine is invoked. Secondly, this removes any
ambiguity in resolving symbols that might be present in more than one DLL. However, this
approach is nowadays deprecated in favour of supplying registration information (see below).
In some circumstances, there will already be an R variable in the package with the same name
as a native symbol. For example, we may have an R function in the package named myRoutine.
In this case, it is necessary to map the native symbol to a different R variable name. This can
be done in the useDynLib directive by using named arguments. For instance, to map the native
symbol name myRoutine to the R variable myRoutine_sym, we would use
useDynLib(foo, myRoutine_sym = myRoutine, myOtherRoutine)
We could then call that routine from R using the command
.Call(myRoutine_sym, x, y)
Symbols without explicit names are assigned to the R variable with that name.
In some cases, it may be preferable not to create R variables in the package’s namespace
that identify the native routines. It may be too costly to compute these for many routines
when the package is loaded if many of these routines are not likely to be used. In this case,
one can still perform the symbol resolution correctly using the DLL, but do this each time the
routine is called. Given a reference to the DLL as an R variable, say dll, we can call the routine
myRoutine using the expression
.Call(dll$myRoutine, x, y)
The $ operator resolves the routine with the given name in the DLL using a call to
getNativeSymbol. This is the same computation as above where we resolve the symbol when the
package is loaded. The only difference is that this is done each time in the case of dll$myRoutine.
In order to use this dynamic approach (e.g., dll$myRoutine), one needs the reference to the
DLL as an R variable in the package. The DLL can be assigned to a variable by using the
variable = dllName format used above for mapping symbols to R variables. For example, if
we wanted to assign the DLL reference for the DLL foo in the example above to the variable
myDLL, we would use the following directive in the NAMESPACE file:
myDLL = useDynLib(foo, myRoutine_sym = myRoutine, myOtherRoutine)
73
Note that this is the basename of the shared object, and the appropriate extension (.so or .dll) will be
added.
Chapter 1: Creating R packages 53
Then, the R variable myDLL is in the package’s namespace and available for calls such as
myDLL$dynRoutine to access routines that are not explicitly resolved at load time.
If the package has registration information (see Section 5.4 [Registering native routines],
page 130), then we can use that directly rather than specifying the list of symbols again in
the useDynLib directive in the NAMESPACE file. Each routine in the registration information
is specified by giving a name by which the routine is to be specified along with the address
of the routine and any information about the number and type of the parameters. Using the
.registration argument of useDynLib, we can instruct the namespace mechanism to create R
variables for these symbols. For example, suppose we have the following registration information
for a DLL named myDLL:
static R_NativePrimitiveArgType foo_t[] = {
REALSXP, INTSXP, STRSXP, LGLSXP
};
1.5.5 An example
As an example consider two packages named foo and bar. The R code for package foo in file
foo.R is
x <- 1
f <- function(y) c(x,y)
foo <- function(x) .Call("foo", x, PACKAGE="foo")
print.foo <- function(x, ...) cat("<a foo>\n")
Some C code defines a C function compiled into DLL foo (with an appropriate extension). The
NAMESPACE file for this package is
useDynLib(foo)
export(f, foo)
S3method(print, foo)
Calling library(bar) loads bar and attaches its exports to the search path. Package foo is also
loaded but not attached to the search path. A call to g produces
> g(6)
[1] 1 13
This is consistent with the definitions of c in the two settings: in bar the function c is defined
to be equivalent to sum, but in foo the variable c refers to the standard function c in base.
and
importFrom(A, ng1)
importClassesFrom(A, c1)
importMethodsFrom(A, f1)
export(f4, f5)
exportMethods(f6, "[")
exportClasses(c1, c2)
respectively.
75
This defaults to the same pattern as exportPattern: use something like exportClassPattern("^$") to
override this.
76
if it does, there will be opaque warnings about replacing imports if the classes/methods are also imported.
Chapter 1: Creating R packages 56
Note that importMethodsFrom will also import any generics defined in the namespace on
those methods.
It is important if you export S4 methods that the corresponding generics are available. You
may for example need to import coef from stats to make visible a function to be converted into
its implicit generic. But it is better practice to make use of the generics exported by stats4 as
this enables multiple packages to unambiguously set methods on those generics.
If you really must require GNU make, declare it in the DESCRIPTION file by
SystemRequirements: GNU make
and ensure that you use the value of environment variable MAKE (and not just make) in your
scripts. (On some platforms GNU make is available under a name such as gmake, and there
SystemRequirements is used to set MAKE.) Your configure script (or similar) does need
to check that the executable pointed to by MAKE is indeed GNU make.
If you only need GNU make for parts of the package which are rarely needed (for example
to create bibliography files under vignettes), use a file called GNUmakefile rather than
Makefile as GNU make (only) will use the former.
macOS has used GNU make for many years (it previously used BSD make), but the version
has been frozen at 3.81 (from 2006).
Since the only viable make for Windows is GNU make, it is permissible to use GNU exten-
sions in files Makevars.win, Makevars.ucrt, Makefile.win or Makefile.ucrt.
• If you use src/Makevars to compile code in a subdirectory, ensure that you have followed
all the advice above. In particular
• Anticipate a parallel make. See Section 1.2.1 [Using Makevars], page 25.
• Pass macros down to the makefile in the subdirectory, including all the needed compiler
flags (including PIC and visibility flags). If they are used (even by a default rule) in
the subdirectory’s Makefile, this includes macros ‘AR’ and ‘RANLIB’. See Section 1.2.1.3
[Compiling in sub-directories], page 31, which has a C example. A C++ example:
pkg/libpkg.a:
(cd pkg && $(MAKE) -f make_pkg libpkg.a \
CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS) $(CXXPICFLAGS) $(C_VISIBILITY)" \
AR="$(AR)" RANLIB="$(RANLIB)")
• Ensure that cleanup will be performed by R CMD build, for example in a cleanup script
or a ‘clean’ target.
• If your package uses a src/Makefile file to compile code to be linked into R, ensure that
it uses exactly the same compiler and flag settings that R uses when compiling such code:
people often forget ‘PIC’ flags. If R CMD config is used, this needs something like (for C++)
RBIN = `"${R_HOME}/bin/R"`
CXX = `"${RBIN}" CMD config CXX`
CXXFLAGS = `"${RBIN}" CMD config CXXFLAGS` `"${RBIN}" CMD config CXXPICFLAGS`
• Names of source files including = (such as src/complex_Sig=gen.c) will confuse some make
programs and should be avoided.
• Bash extensions also need to be avoided in shell scripts, including expressions in Make-
files (which are passed to the shell for processing). Some R platforms use strict81 Bourne
shells: an earlier R toolset on Windows82 and some Unix-alike OSes use ash (https://en.
wikipedia.org/wiki/Almquist_shell, a ‘lightweight shell with few builtins) or derivatives
such as dash. Beware of assuming that all the POSIX command-line utilities are available,
especially on Windows where only a subset (which has changed by version of Rtools) is
provided for use with R. One particular issue is the use of echo, for which two behaviours
are allowed (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.
html) and both have occurred as defaults on R platforms: portable applications should
use neither -n (as the first argument) nor escape sequences. The recommended replace-
ment for echo -n is the command printf. Another common issue is the construction
export FOO=value
81
For example, test options -a and -e are not portable, and not supported in the AT&T Bourne shell used on
Solaris 10/11, even though they are in the POSIX standard. Nor did Solaris support ‘$(cmd)’.
82
as from R 4.0.0 the default is bash.
Chapter 1: Creating R packages 58
script, try installing it whilst using this flag, and read through the config.log file —
compilation warnings and errors can lead to features which are present not being detected.
(If possible do this on several platforms.)
• R CMD check performs some checks for non-portable compiler/linker flags in src/Makevars.
However, it cannot check the meaning of such flags, and some are commonly accepted but
with compiler-specific meanings. There are other non-portable flags which are not checked,
nor are src/Makefile files and makefiles in sub-directories. As a comment in the code says
It is hard to think of anything apart from -I* and -D* that is safe for general
use . . .
although -pthread is pretty close to portable. (Option -U is portable but little use on the
command line as it will only cancel built-in defines (not portable) and those defined earlier
on the command line (R does not use any).)
The GNU option -pipe used to be widely accepted by C/C++/Fortran compilers, but was
removed in flang-new 18. In any case, it should not be used in distributed code as it may
lead to excessive memory use.
People have used configure to customize src/Makevars, including for specific compilers.
This is unsafe for several reasons. First, unintended compilers might meet the check—for
example, several compilers other than GCC identify themselves as ‘GCC’ whilst being only
partially conformant. Second, future versions of compilers may behave differently (including
updates to quite old series) so for example -Werror (and specializations) can make a package
non-installable under a future version. Third, using flags to suppress diagnostic messages
can hide important information for debugging on a platform not tested by the package
maintainer. (R CMD check can optionally report on unsafe flags which were used.)
Avoid the use of -march and especially -march=native. This allows the compiler to generate
code that will only run on a particular class of CPUs (that of the compiling machine for
‘native’). People assume this is a ‘minimum’ CPU specification, but that is not how it
is documented for gcc (it is accepted by clang but apparently it is undocumented what
precisely it does, and it can be accepted and may be ignored for other compilers). (For
personal use -mtune is safer, but still not portable enough to be used in a public package.)
Not even gcc supports ‘native’ for all CPUs, and it can do surprising things if it finds a
CPU released later than its version.
• Do be very careful with passing arguments between R, C and Fortran code. In particular,
long in C will be 32-bit on some R platforms (including 64-bit Windows), but 64-bit on
most modern Unix and Linux platforms. It is rather unlikely that the use of long in C code
has been thought through: if you need a longer type than int you should use a configure
test for a C99/C++11 type such as int_fast64_t (and failing that, long long) and typedef
your own type, or use another suitable type (such as size_t, but beware that is unsigned
and ssize_t is not portable).
It is not safe to assume that long and pointer types are the same size, and they are not on
64-bit Windows. If you need to convert pointers to and from integers use the C99/C++11
integer types intptr_t and uintptr_t (in the headers <stdint.h> and <cstdint>: they
are not required to be implemented by the standards but are used in C code by R itself).
Note that integer in Fortran corresponds to int in C on all R platforms. There is no such
guarantee for Fortran logical, and recent gfortran maps it to int_least32_t on most
platforms.
• Under no circumstances should your compiled code ever call abort or exit85 : these ter-
minate the user’s R process, quite possibly losing all unsaved work. One usage that could
call abort is the assert macro in C or C++ functions, which should never be active in
85
or where supported the variants _Exit and _exit.
Chapter 1: Creating R packages 60
production code. The normal way to ensure that is to define the macro NDEBUG, and R CMD
INSTALL does so as part of the compilation flags. Beware of including headers (including
from other packages) which could undefine it, now or in future versions. If you wish to use
assert during development, you can include -UNDEBUG in PKG_CPPFLAGS or #undef it in
your headers or code files. Note that your own src/Makefile or makefiles in sub-directories
may also need to define NDEBUG.
This applies not only to your own code but to any external software you compile in or link
to.
Nor should Fortran code call STOP nor EXIT (a GNU extension).
• Compiled code should not write to stdout or stderr and C++ and Fortran I/O should not
be used. As with the previous item such calls may come from external software and may
never be called, but package authors are often mistaken about that.
• Compiled code should not call the system random number generators such as rand, drand48
and random86 , but rather use the interfaces to R’s RNGs described in Section 6.3 [Random
numbers], page 174. In particular, if more than one package initializes a system RNG (e.g.
via srand), they will interfere with each other. This applies also to Fortran 90’s random_
number and random_seed, and Fortran 2018’s random_init. And to GNU Fortran’s rand,
irand and srand. Except for drand48, what PRNG these functions use is implementation-
dependent.
Nor should the C++11 random number library be used nor any other third-party random
number generators such as those in GSL.
• Use of sprintf and vsprintf is regarded as a potential security risk and warned about on
some platforms.87 R CMD check reports if any calls are found.
• Errors in memory allocation and reading/writing outside arrays are very common causes
of crashes (e.g., segfaults) on some machines. See Section 4.3 [Checking memory access],
page 112, for tools which can be used to look for this.
• Many platforms will allow unsatisfied entry points in compiled code, but will crash the
application (here R) if they are ever used. Some (notably Windows) will not. Looking at
the output of
nm -pg mypkg.so
and checking if any of the symbols marked U is unexpected is a good way to avoid this.
• Linkers have a lot of freedom in how to resolve entry points in dynamically-loaded code,
so the results may differ by platform. One area that has caused grief is packages including
copies of standard system software such as libz (especially those already linked into R).
In the case in point, entry point gzgets was sometimes resolved against the old version
compiled into the package, sometimes against the copy compiled into R and sometimes
against the system dynamic library. The only safe solution is to rename the entry points
in the copy in the package. We have even seen problems with entry point name myprintf,
which is a system entry point88 on some Linux systems.
A related issue is the naming of libraries built as part of the package installation. macOS
and Windows have case-insensitive file systems, so using
-L. -lLZ4
in PKG_LIBS will match liblz4. And -L. only appends to the list of searched locations,
and liblz4 might be found in an earlier-searched location (and has been). The only safe
way is to give an explicit path, for example
86
This and srandom are in any case not portable. They are in POSIX but not in the C99 standard, and not
available on Windows.
87
including macOS as from version 13.
88
in libselinux.
Chapter 1: Creating R packages 61
./libLZ4.a
• Conflicts between symbols in DLLs are handled in very platform-specific ways. Good ways
to avoid trouble are to make as many symbols as possible static (check with nm -pg), and
to use names which are clearly tied to your package (which also helps users if anything does
go wrong). Note that symbol names starting with R_ are regarded as part of R’s namespace
and should not be used in packages.
• It is good practice for DLLs to register their symbols (see Section 5.4 [Registering native
routines], page 130), restrict visibility (see Section 6.18 [Controlling visibility], page 194)
and not allow symbol search (see Section 5.4 [Registering native routines], page 130). It
should be possible for a DLL to have only one visible symbol, R_init_pkgname, on suitable
platforms89 , which would completely avoid symbol conflicts.
• It is not portable to call compiled code in R or other packages via .Internal, .C, .Fortran,
.Call or .External, since such interfaces are subject to change without notice and will
probably result in your code terminating the R process.
• Do not use (hard or symbolic) file links in your package sources. Where possible R CMD
build will replace them by copies.
• If you do not yourself have a Windows system, consider submitting your source package to
WinBuilder (https://win-builder.r-project.org/) before distribution. If you need to
check on an M1 Mac, there is a check service at https://mac.r-project.org/macbuilder/
submit.html.
• It is bad practice for package code to alter the search path using library, require or
attach and this often does not work as intended. For alternatives, see Section 1.1.3.1
[Suggested packages], page 12, and with().
• Examples can be run interactively via example as well as in batch mode when checking.
So they should behave appropriately in both scenarios, conditioning by interactive() the
parts which need an operator or observer. For instance, progress bars90 are only appropriate
in interactive use, as is displaying help pages or calling View() (see below).
• Be careful with the order of entries in macros such as PKG_LIBS. Some linkers will re-order
the entries, and behaviour can differ between dynamic and static libraries. Generally -L
options should precede91 the libraries (typically specified by -l options) to be found from
those directories, and libraries are searched once in the order they are specified. Not all
linkers allow a space after -L .
• Care is needed with the use of LinkingTo. This puts one or more directories on the include
search path ahead of system headers but (prior to R 3.4.0) after those specified in the
CPPFLAGS macro of the R build (which normally includes -I/usr/local/include, but
most platforms ignore that and include it with the system headers).
Any confusion would be avoided by having LinkingTo headers in a directory named after
the package. In any case, name conflicts of headers and directories under package include
directories should be avoided, both between packages and between a package and system
and third-party software.
• The ar utility is often used in makefiles to make static libraries. Its modifier u is defined
by POSIX but is disabled in GNU ar on some Linux distributions which use ‘deterministic
mode’. The safest way to make a static library is to first remove any existing file of that
name then use $(AR) -cr and then $(RANLIB) if needed (which is system-dependent: on
most systems92 ar always maintains a symbol table). The POSIX standard says options
89
At least Linux and Windows, but not macOS.
90
except perhaps the simplest kind as used by download.file() in non-interactive use.
91
Whereas the GNU linker reorders so -L options are processed first, the Solaris one did not.
92
some versions of macOS did not.
Chapter 1: Creating R packages 62
should be preceded by a hyphen (as in -cr), although most OSes accept them without.
Note that on some systems ar -cr must have at least one file specified.
The s modifier (to replace a separate call to ranlib) is required by X/OPEN but not
POSIX, so ar -crs is not portable.
For portability the AR and RANLIB macros should always be used – some builds require
wrappers such as gcc-ar or extra arguments to specify plugins.
• The strip utility is platform-specific (and CRAN prohibits removing debug symbols). For
example the options --strip-debug and --strip-unneeded of the GNU version are not
supported on macOS: the POSIX standard for strip does not mention any options, and
what calling it without options does is platform-dependent. Stripping a .so file could even
prevent it being dynamically loaded into R on an untested platform.
ld -S invokes strip --strip-debug for GNU ld (and similarly on macOS) but is not
portable: in particular on Solaris it did something completely different and took an argu-
ment.
• Some people have a need to set a locale. Locale names are not portable, and e.g.
‘fr_FR.utf8’ is commonly used on Linux but not accepted on macOS. ‘fr_FR.UTF-8’ is
more portable, being accepted on recent Linux, AIX, FreeBSD, macOS and Solaris (at
least). However, some Linux distributions micro-package, so locales defined by glibc (in-
cluding these examples) may not be installed.
• Avoid spaces in file names, not least as they can cause difficulties for external tools. An
example was a package with a knitr (https://CRAN.R-project.org/package=knitr) vi-
gnette that used spaces in plot names: this caused some older versions of pandoc to fail
with a baffling error message.
Non-ASCII filenames can also cause problems (particularly in non-UTF-8 locales).
• Take care in naming LATEX macros (also known as ‘commands’) in vignette sources: if these
are also defined in a future version of one of the LATEX packages used there will be a fatal
error. One instance in 2021 was package ‘hyperref’ newly defining ‘\C’, ‘\F’, ‘\G’, ‘\U’ and
‘\textapprox’. If you are confident that your definitions will be the only ones relevant you
can use ‘\renewcommand’ but it is better to use names clearly associated with your package.
• Make sure that any version requirement for Java code is both declared in the
‘SystemRequirements’ field93 and tested at runtime (not least as the Java installation
when the package is installed might not be the same as when the package is run and will
not be for binary packages).
When specifying a minimum Java version please use the official version names, which are
(confusingly)
1.1 1.2 1.3 1.4 5.0 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
and as from 2018 a year.month scheme such as ‘18.9’ is also in use. Fortunately only the
integer values are likely to be relevant. If at all possible, use one of the LTS versions (8, 11,
17, 21 . . . ) as the minimum version. The preferred form of version specification is
SystemRequirements: Java (>= 11)
A suitable test for Java at least version 8 for packages using rJava (https://CRAN.
R-project.org/package=rJava) would be something like
.jinit()
jv <- .jcall("java/lang/System", "S", "getProperty", "java.runtime.version")
if(substr(jv, 1L, 2L) == "1.") {
jvn <- as.numeric(paste0(strsplit(jv, "[.]")[[1L]][1:2], collapse = "."))
93
If a Java interpreter is required directly (not via rJava (https://CRAN.R-project.org/package=rJava)) this
must be declared and its presence tested like any other external command.
Chapter 1: Creating R packages 63
if(jvn < 1.8) stop("Java >= 8 is needed for this package but not available")
}
Java 9 changed the format of this string (which used to be something like ‘1.8.0_292-b10’);
Java 11 gave jv as ‘11+28’ whereas Java 11.0.11 gave ‘11.0.11+9’. (https://openjdk.
org:443/jeps/322 details the current scheme. Note that it is necessary to allow for pre-
releases like ‘11-ea+22’.)
Note too that the compiler used to produce a jar can impose a minimum Java version,
often resulting in an arcane message like
java.lang.UnsupportedClassVersionError: ... Unsupported major.minor version 52.0
(Where https://en.wikipedia.org/wiki/Java_class_file maps class-file version num-
bers to Java versions.) Compile with something like javac -target 11 to ensure this is
avoided. Note this also applies to packages distributing (or even downloading) compiled
Java code produced by others, so their requirements need to be checked (they are often
not documented accurately) and accounted for. It should be possible to check the class-file
version via command-line utility javap, if necessary after extracting the .class files from
a .jar archive. For example,
jar xvf some.jar
javap -verbose path/to/some.class | grep major
Some packages have stated a requirement on a particular JDK, but a package should only
be requiring a JRE unless providing its own Java interface.
Java 8 is still in widespread use (and may remain so because of licence changes and support
on older OSes: OpenJDK has security support until March 2026). On the other hand,
newer platforms may only have support for recent versions of Java: for ‘arm64’ macOS the
first officially supported version was 17.
• A package with a hard-to-satisfy system requirement is by definition not portable, an-
noyingly so if this is not declared in the ‘SystemRequirements’ field. The most common
example is the use of pandoc, which is only available for a very limited range of platforms
(and has onerous requirements to install from source) and has capabilities94 that vary by
build but are not documented. Several recent versions of pandoc for macOS did not work
on R’s then target of High Sierra (and this too was undocumented). Another example is
the Rust compilation system (cargo and rustc).
Usage of external commands should always be conditional on a test for presence (perhaps
using Sys.which), as well as declared in the ‘SystemRequirements’ field. A package should
pass its checks without warnings nor errors without the external command being present.
An external command can be a (possibly optional) requirement for an imported or suggested
package but needed for examples, tests or vignettes in the package itself. Such usages should
always be declared and conditional.
Interpreters for scripting languages such as Perl, Python and Ruby need to be declared as
system requirements and used conditionally: for example macOS 10.16 was announced not
to have them (but released as macOS 11 with them); later it was announced that macOS
12.3 does not have Python 2 and only a minimal install of Python 3 is included. Python 2
has passed end-of-life and been removed from many major distributions. Support for Rust
or Go cannot be assumed.
Command cmake is not commonly installed, and where it is, it might not
be on the path. In particular, the most common location on macOS is
/Applications/CMake.app/Contents/bin/cmake and that should be looked for
if cmake is not found on the path.
94
For example, the ability to handle ‘https://’ URLs.
Chapter 1: Creating R packages 64
• Be sure to use portable encoding names: none of utf8, mac and macroman is portable. See
the help for file for more details.
• Do not invoke R by plain R, Rscript or (on Windows) Rterm in your examples, tests,
vignettes, makefiles or other scripts. As pointed out in several places earlier in this manual,
use something like
"$(R_HOME)/bin/Rscript"
"$(R_HOME)/bin$(R_ARCH_BIN)/Rterm"
with appropriate quotes (as, although not recommended, R_HOME can contain spaces).
• Do not use R_HOME in makefiles except when passing them to the shell. Specifically, do
not use R_HOME in the argument to include, as R_HOME can contain spaces. Quoting the
argument to include does not help. A portable and the recommended way to avoid the
problem of spaces in ${R_HOME} is using option -f of make. This is easy to do with recursive
invocation of make, which is also the only usual situation when R_HOME is needed in the
argument for include.
$(MAKE) -f "${R_HOME}/etc${R_ARCH}/Makeconf" -f Makefile.inner
• If distributing datasets involving date-times, consider if a time zone needs to be specified.
The most portable way to distribute date-times is as objects of class "POSIXct" and as
these record the time in UTC, the time represented is independent of the time zone: but
how it is printed may not be. Objects of class "POSIXlt" should have a "tzone" attribute.
Dates (e.g, birthdays) are conventionally considered independently of time zone.
• If at all possible avoid any Internet access during package installation. Installation and use
may well be on different machines/accounts and those allowed to install software may have
no Internet access, and being self-contained helps ensure long-term reproducibility.
Do be careful in what your tests (and examples) actually test. Bad practice seen in distributed
packages include:
• It is not reasonable to test the time taken by a command: you cannot know how fast or
how heavily loaded an R platform might be. At best you can test a ratio of times, and even
that is fraught with difficulties and not advisable: for example, the garbage collector may
trigger at unpredictable times following heuristics that may change without notice.
• Do not test the exact format of R messages (from R itself or from other packages): They
change, and they can be translated.
Packages have even tested the exact format of system error messages, which are platform-
dependent and perhaps locale-dependent. For example, in late 2021 libcurl changed its
warning/error messages, including when URLs are not found.
• Do not test for the absence of warnings (something users of testthat (https://CRAN.
R-project.org/package=testthat) are fond of). Future changes in either R or pack-
ages you make use of can create new warnings, and your tests should not make these into
errors. (Some deprecation notices may be intended to remain as warnings for a long time.)
• If you use functions such as View, remember that in testing there is no one to look at the
output. It is better to use something like one of
if(interactive()) View(obj) else print(head(obj))
if(interactive()) View(obj) else str(obj)
• Be careful when comparing file paths. There can be multiple paths to a single file, and
some of these can be very long character strings. If possible canonicalize paths before
comparisons, but study ?normalizePath to be aware of the pitfalls.
• Only test the accuracy of results if you have done a formal error analysis. Things such
as checking that probabilities numerically sum to one are silly: numerical tests should
always have a tolerance. That the tests on your platform achieve a particular tolerance says
Chapter 1: Creating R packages 65
little about other platforms. R is configured by default to make use of long doubles where
available, but they may not be available or be too slow for routine use. Most R platforms
use ‘ix86’ or ‘x86_64’ CPUs: these may use extended precision registers on some but not all
of their FPU instructions. Thus the achieved precision can depend on the compiler version
and optimization flags—our experience is that 32-bit builds tend to be less precise than
64-bit ones. But not all platforms use those CPUs, and not all95 which use them configure
them to allow the use of extended precision. In particular, current ARM CPUs do not
have extended precision nor long doubles, and clang currently has long double the same
as double on all ARM CPUs. On the other hand some CPUs have higher-precision modes
which may be used for long double, notably 64-bit PowerPC and Sparc.
If you must try to establish a tolerance empirically, configure and build R with --disable-
long-double and use appropriate compiler flags (such as -ffloat-store and -fexcess-
precision=standard for gcc, depending on the CPU type96 ) to mitigate the effects of
extended-precision calculations. The platform most often seen to give different numerical
results is ‘arm64’ macOS, so be sure to include that in any empirical determination.
Tests which involve random inputs or non-deterministic algorithms should normally set a
seed or be tested for many seeds.
• Tests should use options(warn = 1) as reporting
There were 22 warnings (use warnings() to see them)
is pointless, especially for automated checking systems.
• If your package uses dates/times, ensure that it works in all timezones, especially those
near boundaries (problems have most often be seen in ‘Europe/London’ (zero offset in
Winter) and ‘Pacific/Auckland’, near enough the International Date line) and with off-
sets not in whole hours (Adelaide, Chatham Islands, . . . ). More extreme examples are
‘Africa/Conakry’ (permanent UTC), ‘Asia/Calcutta’ (no DST, permanent half-hour off-
set) and ‘Pacific/Kiritimati’(no DST, more than 12 hours ahead of UTC).
Several CRAN packages have messages in their R code in French (and a few in German). A
better way to tackle this is to use the internationalization facilities discussed elsewhere in this
manual.
Function showNonASCIIfile in package tools can help in finding non-ASCII bytes in files.
There is a portable way to have arbitrary text in character strings (only) in your R code,
which is to supply them in Unicode as ‘\uxxxx’ escapes (or, rarely needed except for emojis,
‘\Uxxxxxxxx’ escapes). If there are any characters not in the current encoding the parser will
encode the character string as UTF-8 and mark it as such. This applies also to character strings
in datasets: they can be prepared using ‘\uxxxx’ escapes or encoded in UTF-8 in a UTF-8
locale, or even converted to UTF-8 via iconv(). If you do this, make sure you have ‘R (>=
2.10)’ (or later) in the ‘Depends’ field of the DESCRIPTION file.
R sessions running in non-UTF-8 locales will if possible re-encode such strings for display
(and this is done by RGui on older versions of Windows, for example). Suitable fonts will need
to be selected or made available99 both for the console/terminal and graphics devices such as
‘X11()’ and ‘windows()’. Using ‘postscript’ or ‘pdf’ will choose a default 8-bit encoding
depending on the language of the UTF-8 locale, and your users would need to be told how to
select the ‘encoding’ argument.
Note that the previous two paragraphs only apply to character strings in R code. Non-ASCII
characters are particularly prevalent in comments (in the R code of the package, in examples,
tests, vignettes and even in the NAMESPACE file) but should be avoided there. Most commonly
people use the Windows extensions to Latin-1 (often directional single and double quotes, ellipsis,
bullet and en and em dashes) which are not supported in strict Latin-1 locales nor in CJK locales
on Windows. A surprisingly common misuse is to use a right quote in ‘don't’ instead of the
correct apostrophe.
Datasets can include marked UTF-8 or Latin-1 character strings. As R is nowadays unlikely
to be run in a Latin-1 or Windows’ CP1252 locale, for performance reasons these should be
converted to UTF-8.
If you want to run R CMD check on a Unix-alike over a package that sets a package encoding
in its DESCRIPTION file and do not use a UTF-8 locale you may need to specify a suitable locale
via environment variable R_ENCODING_LOCALES. The default is equivalent to the value
"latin1=en_US:latin2=pl_PL:UTF-8=en_US.UTF-8:latin9=fr_FR.iso885915@euro"
(which is appropriate for a system based on glibc: macOS requires latin9=fr_FR.ISO8859-
15) except that if the current locale is UTF-8 then the package code is translated to UTF-8 for
syntax checking, so it is strongly recommended to check in a UTF-8 locale.
99
Typically on a Unix-alike this is done by telling fontconfig where to find suitable fonts to select glyphs from.
Chapter 1: Creating R packages 68
Later C++ standards, notably C++17 remove features deprecated in earlier versions. Unfortu-
nately some compilers, notably g++ have retained these features so if possible test under another
compiler (such as that used on macOS).
Note that the ‘TR1’ C++ extensions are not part of any of these standards and the <tr1/name>
headers are not supplied by some of the compilers used for R, including on macOS. (Use the
C++11 versions instead.)
A common error is to assume recent versions of compilers or OSes. In production environ-
ments ‘long term support’ versions of OSes may be in use for many years,100 and their compilers
may not be updated during that time. For example, GCC 4.8 was still in use in 2022 and could
be (in RHEL 7) until 2028: that supports neither C++14 nor C++17.
The POSIX standards only require recently-defined functions to be declared if certain macros
are defined with large enough values, and on some compiler/OS combinations101 they are not
declared otherwise. So you may need to include something like one of
#define _XOPEN_SOURCE 600
or
#ifdef __GLIBC__
# define _POSIX_C_SOURCE 200809L
#endif
before any headers. (strdup, strncasecmp and strnlen are such functions – there were several
older platforms which did not have the POSIX 2008 function strnlen.)
‘Linux’ is not a well-defined operating system: it is a kernel plus a collection of compo-
nents. Most distributions use glibc to provide most of the C headers and run-time library, but
others, notably Alpine Linux, use other implementations such as musl — see https://wiki.
musl-libc.org/functional-differences-from-glibc.html.
However, some common errors are worth pointing out here. It can be helpful to look up
functions at https://cplusplus.com/reference/ or https://en.cppreference.com/w/ and
compare what is defined in the various standards.
More care is needed for functions such as mallinfo which are not specified by any of these
standards—hopefully the man page on your system will tell you so. Searching online for such
pages for various OSes (preferably at least Linux and macOS, and the FreeBSD manual pages at
https://man.freebsd.org/cgi/man.cgi allow you to select many OSes) should reveal useful
information but a configure script is likely to be needed to check availability and functionality.
Both the compiler and OS (via system header files, which may differ by architecture even
for nominally the same OS) affect the compilability of C/C++ code. Compilers from the GCC,
LLVM (clang and flang) Intel and Oracle Developer Studio suites have been used with R, and
both LLVM clang and Oracle have more than one implementation of C++ headers and library.
The range of possibilities makes comprehensive empirical checking impossible, and regrettably
compilers are patchy at best on warning about non-standard code.
• Mathematical functions such as sqrt are defined in C++11 for floating-point arguments:
float, double, long double and possibly more. The standard specifies what happens with
an argument of integer type but this is not always implemented, resulting in a report of
‘overloading ambiguity’: this was commonly seen on Solaris, but for pow also seen on macOS
and other platforms using clang++.
100
Ubuntu provides 5 years of support (but people were running 14.04 after 7 years) and RHEL provides 10 years
full support and up to 14 with extended support.
101
This is seen on Linux, Solaris and FreeBSD, although each has other ways to turn on all extensions, e.g.
defining _GNU_SOURCE, __EXTENSIONS__ or _BSD_SOURCE: the GCC compilers by default define _GNU_SOURCE
unless a strict standard such as -std=c99 is used. On macOS extensions are declared unless one of these
macros is given too small a value.
Chapter 1: Creating R packages 69
102
often taken from the toolchain’s headers.
103
at the time of writing ‘arm64’ macOS both warned and did not supply a prototype in math.h which resulted
in a compilation error.
104
also part of C++11 and later.
105
which often is the same as the header included by the C compiler, but some compilers have wrappers for some
of the C headers.
Chapter 1: Creating R packages 70
Note that malloc, calloc, realloc and free are defined by C99 in the header stdlib.h
and (in the std:: namespace) by C++ header cstdlib. Some earlier implementations used
a header malloc.h, but that is not portable and does not exist on macOS.
This also applies to types such as ssize_t. The POSIX standards say that is declared in
headers unistd.h and sys/types.h, and the latter is often included indirectly by other
headers on some but not all systems.
POSIX mandates the header unistd.h: most but not all OSes supply header sys/unistd.h
as a wrapper, so this should not be used.
Similarly for constants: for example SIZE_MAX is defined in stdint.h alongside size_t.
• Some headers are not portable: we have just mentioned malloc.h and often CRAN sub-
missions attempt to use endian.h. The latter is a glibc extension: some OSes have
machine/endian.h or sys/endian.h but some have neither. Header execinfo.h is only
available on a few OSes: formerly nor in MacOS nor Solaris, and currently not on Linux
systems (such as Alpine Linux) using musl. Nor is header fpu_control.h available on
macOS nor musl.
• Use #include "my.h" not #include <my.h> for headers in your package. The second form
is intended for system headers and the search order for such headers is platform-dependent
(and may not include the current directory). For extra safety, name headers in a way that
cannot be confused with a system header so not, for example, types.h.
• For C++ code, be careful to specify namespaces where needed. Many functions are defined
by the standards to be in the std namespace, but g++ puts many such also in the C++ main
namespace. One way to do so is to use declarations such as
using std::floor;
but it is usually preferable to use explicit namespace prefixes in the code.
Examples seen in CRAN packages include
abs acos atan bind calloc ceil div exp fabs floor fmod free log malloc
memcpy memset pow printf qsort round sin sprintf sqrt strcmp strcpy
strerror strlen strncmp strtol tan trunc
This problem is less common than it used to be, but in 2019 LLVM clang did not have bind
in the main namespace. Also seen has been type size_t defined only in the std namespace.
NB: These functions are only guaranteed to be in the std namespace if the correct C++
header is included, e.g. <cmath> rather than <math.h>.
If you define functions in C++ which are inspired by later standards, put them in a namespace
and refer to them using the namespace. We have seen conflicts with std::make_unique
from C++14 and std::byte, std::data, std::sample and std::size from C++17.
• In C++ code
using namespace std;
is not good practice, and has caused platform-dependent errors if included before headers,
especially system headers (which may be included by other headers). The best practice is
to use explicit std:: prefixes for all functions declared by the C++ standard to be in that
namespace. It is an error to use using namespace std before including any C++ headers,
and some recent compilers will warn if this is done.
• Some C++ compilers refuse to compile constructs such as
if(ptr > 0) { ....}
which compares a pointer to the integer 0. This could just use if(ptr) (pointer addresses
cannot be negative) but if needed pointers can be tested against nullptr (C++11) or NULL.
• Macros defined by the compiler/OS can cause problems. Identifiers starting with an under-
score followed by an upper-case letter or another underscore are reserved for system macros
Chapter 1: Creating R packages 71
and should not be used in portable code (including not as guards in C/C++ headers). Other
macros, typically upper-case, may be defined by the compiler or system headers and can
cause problems. Some of these can be avoided by defining _POSIX_C_SOURCE before in-
cluding any system headers, but it is better to only use all-upper-case names which have a
unique prefix such as the package name.
• typedefs in OS headers can conflict with those in the package: examples have included
ulong, index_t, single and thread. (Note that these may conflict with other uses as
identifiers, e.g. defining a C++ function called single.) The POSIX standard reserves (in
§2.2.2) all identifiers ending in _t.
• Some compilers do not allow a space between -D and the macro to be defined. Similarly for
-U.
• If you use OpenMP, check carefully that you have followed the advice in the subsection on
Section 1.2.1.1 [OpenMP support], page 28. In particular, any use of OpenMP in C/C++
code will need to use
#ifdef _OPENMP
# include <omp.h>
#endif
Any use of OpenMP functions, e.g. omp_set_num_threads, also needs to be conditioned.
To avoid incessant warnings such as
warning: ignoring #pragma omp parallel [-Wunknown-pragmas]
uses of such pragmas should also be conditioned (or commented out if they are used in code
in a package not enabling OpenMP on any platform).
Do not hardcode -lgomp: not only is that specific to the GCC family of compilers, using
the correct linker flag often sets up the run-time path to the library.
• Package authors commonly assume things are part of C/C++ when they are not: the most
common example is POSIX106 function strdup. The most common C library on Linux,
glibc, will hide the declarations of such extensions unless a ‘feature-test macro’ is defined
before (almost) any system header is included. So for strdup you need
#define _POSIX_C_SOURCE 200809L
...
#include <string.h>
...
strdup call(s)
where the appropriate value can be found by man strdup on Linux. (Use of strncasecmp
is similar.)
However, modes of gcc with ‘GNU EXTENSIONS’ (which are the default, either
-std=gnu99 or -std=gnu11) declare enough macros to ensure that missing declarations
are rarely seen.
This applies also to constants such as M_PI and M_LN2, which are part of the X/Open
standard: to use these define _XOPEN_SOURCE before including any headers, or include the
R header Rmath.h.
• Using alloca portably is tricky: it is neither an ISO C/C++ nor a POSIX function. An
adequately portable preamble is
#ifdef __GNUC__
/* Includes GCC, clang and Intel compilers */
# undef alloca
# define alloca(x) __builtin_alloca((x))
106
Although this was added for C23, full support of that is years away.
Chapter 1: Creating R packages 72
ISO C++11 does not allow conversion from string literal to 'char *'
(where conversion should be to const char *). Keyword register was not mentioned in
C++98, deprecated in C++11 and removed in C++17.
There are quite a lot of other C++98 features deprecated in C++11 and removed in C++17,
and LLVM clang 9 and later warn about them (and as from version 16 they have been
removed). Examples include bind1st/bind2nd (use std::bind or lambdas107 ) std::auto_
ptr (replaced by std::unique_ptr), std::mem_fun_ref and std::ptr_fun.
• Later versions of standards may add reserved words: for example bool, false and true
became keywords in C23 and are no longer available as variable names. As noted above,
C++17 uses byte, data, sample and size.
So avoid common words and keywords from other programming languages.
• Be careful about including C headers in C++ code. Issues include
• Use of the register storage class specifier (see the previous but one item).
• The C99 keyword restrict is not part of 108 any C++ standard and is rejected by some
C++ compilers.
• Inclusion by such headers of C-style headers such as math.h (see above).
The most portable way to interface to other software with a C API is to use C code (which
can normally be mixed with C++ code in a package).
• Include only what is essential in extern "C" {} blocks in C++ code. In particular it is not
portable to include R headers in such blocks (although they are themselves C code, they
may include C++ system headers and the public ones already enclose their declarations in
such a block). And maintainers have include R headers from other headers included in such
a block.
• reinterpret_cast in C++ is not safe for pointers: for example the types may have dif-
ferent alignment requirements. Use memcpy to copy the contents to a fresh variable of the
destination type.
• Avoid platform-specific code if at all possible, but if you need to test for a platform ensure
that all platforms are covered. For example, __unix__ is not defined on all Unix-alikes, in
particular not on macOS. A reasonably portable way to condition code for a Unix-alike is
#if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__))
#endif
but
#ifdef _WIN32
// Windows-specific code
# if defined(_M_ARM64) || defined(__aarch64__)
107
https://stackoverflow.com/questions/32739018/a-replacement-for-stdbind2nd
108
it is allowed but ignored in system headers.
Chapter 1: Creating R packages 73
// for ARM
# else
// for Intel
# endif
#else
// Unix-alike code
#endif
would be better. For a Unix-alike it is much better to use configure to test for the
functionality needed than make assumptions about OSes (and people all too frequently
forget R is used on platforms other than Linux, Windows and macOS — and some forget
macOS).
• Headers in subdirectories are often not portable. For C++, this includes bits/, tr1/ and
tr2/, none of which exist on macOS (and ext/ exists there but with different content from
g++-based platforms). Header bits/stdc++.h is both not portable and not recommended
for end-user code even on platforms which include it.
• Be careful if using malloc or calloc. First, their return value must always be checked
to see if the allocation succeeded – it is almost always easier to use R’s R_Calloc, which
does check. Second, the first argument is of type size_t109 and some recent compilers
warn about passing int (signed) arguments (which could get promoted to ridiculously large
values).
• For C code, consider using the flag -Wstrict-prototypes which is supported by gcc and
LLVM and Apple clang. This has found quite a number of errors where functions have
been declared without arguments and is likely to become the default in future compilers.
(It already is for Apple clang and for LLVM clang in C23 mode.) Note that using f()
for a function without any parameters was deprecated in C99 and C11, but it became
non-deprecated in C23. However, f(void) is supported by all standards and avoids any
uncertainty.
LLVM clang has a separate warning -Wdeprecated-non-prototype which is enabled by
-Wstrict-prototypes. This warns on K&R-style usage, which will not be accepted in C23.
• Several C entry points are warned against in their man pages on most systems, often in
very strong terms such as ’Do not use these functions’. macOS has started to warn110 if
these are used for sprintf, vsprintf, gets, mktemp, tempmam and tmpnam. It is highly
recommended that you use safer alternatives (on any platform) but the warning can be
avoided by defining ‘_POSIX_C_SOURCE’ to for example ‘200809L’ before including the (C
or C++) header which defines them. (However, this may hide other extensions.)
• Compilers may interpret comments in source code, so it is necessary to remove any intended
for a compiler to interpret. The main example has been comments for Visual Fortran (as
the Intel Fortran compiler has been known on Windows111 ) like
!DEC$ ATTRIBUTES DLLEXPORT,C,REFERENCE,ALIAS:'kdenestmlcvb' :: kdenestmlcvb
which are interpreted by Intel Fortran on all platforms (and are inappropriate for use with
R on Windows). gfortran has similar forms starting with !GCC$.
• The C++ new operator takes argument std::size_t size, which is unsigned. Using a
signed integer type such as int may lead to compiler warnings such as
warning: argument 1 value '18446744073709551615' exceeds maximum object
size 9223372036854775807 [-Walloc-size-larger-than=]
(especially if LTO is used). So don’t do that!
109
an unsigned 64-bit integer type on recent R platforms.
110
when using the macOS 13 SDK with a deployment target of macOS 13.
111
and at one time as DEC Fortran, hence the DEC.
Chapter 1: Creating R packages 74
• Some authors feel the need to print (using Rprintf or similar) vector lengths or indices
which are of type R_xlen_t. That may be a 32-bit or (most commonly) 64-bit type but
which integer type it is mapped to is platform-specific. The safest way is to cast the length
to double and use a double format. So one could use something like
SEXP Robj; R_xlen_t nelem;
Rf_error("Actual: %0.f; Expected %0.f\n", (double) XLENGTH(Robj), (double) nele
(This could print to full precision, lengths well beyond the address space limits of current
OSes, let alone practical limits.)
If you do want to use an integer format, be aware that R_xlen_t is implemented by the
int, long or long long type on current platforms and even on 64-bit ones need not be the
same type as int64_t. So the values will need to be cast to the type assumed by the format
(and %lld was not supported on Windows until R 4.2.0).
• Variadic macros in C or C++ only portably allow a non-zero number of arguments, although
some compilers have allowed zero, often with a warning. The latter was standardized in
C++20 using the __VA_OPT__ macro. C23 also allows zero arguments in a similar way.
Some additional information for C++ is available at https://journal.r-project.org/
archive/2011-2/RJournal_2011-2_Plummer.pdf by Martyn Plummer.
Several OSes have or currently do provide multiple C++ runtimes — Solaris did and the LLVM
clang compiler has a native C++ runtime library libc++ but is also used with GCC’s libstdc++
(by default on Debian/Ubuntu). This makes it unsafe to assume that OS libraries with a C++
interface are compatible with the C++ compiler specified by R. Many of these system libraries
also have C interfaces which should be used in preference to their C++ interface. Otherwise it is
essential that a package checks compatibility in its configure script, including that C++ code
using the library can both be linked and loaded.
This is not pertinent to C++ which does not permit tentative definitions.
• INIINITY and NAN are available via header float.h and deprecated in math.h.
• POSIX functions memccpy, strdup and strndup are part of C23.
• There are decimal floating-point types and functions and extended support of binary
floating-point functions, including binary floating-point constants.
gfortran supports values of 4 and 8 on all current platforms and 10 and 16 on a few (but
not for example on all ‘arm’ CPUs).
The same applies to INTEGER(KIND=4) and COMPLEX(KIND=16).
Many uses of integer and real variable in Fortran code in packages will interwork with C (for
example .Fortran is written in C), and R has checked that INTEGER and DOUBLE PRECISION
correspond to the C types int and double. To make this explicit, from Fortran 2003 one
can use the named constants c_int, c_double and c_double_complex from module iso_
c_binding.
• The Intel compilers only recognize the extensions .f (fixed-form) and .f90 (free-form) and
not .f95. R CMD INSTALL works around this for packages without a src/Makefile.
• Use of extensions .F and .F90 to indicate source code to be preprocessed: the preprocessor
used is compiler-specific and may or may not be cpp. Compilers may even preprocess files
with extension .f or .f90 (Intel does).
• Fixed form Fortran (with extension .f) should only use 72 columns, and free-form at most
132 columns. This includes trailing comments. Over-long lines may be silently truncated
or give a warning.
• Tabs are not part of the Fortran character set: compilers tend to accept them but how they
are interpreted is compiler-specific.
• Fortran-66-style Hollerith constants.
As well as ‘deleted features’, Fortran standards have ‘obsolescent features’. These are similar
to ‘deprecated’ in other languages, but the Fortran standards committee has said it will only
move them to ‘deleted’ status when they are no longer much used. These include
• ENTRY statements.
• FORALL statements.
• Labelled DO statements.
• COMMON and EQUIVALENCE statements, and BLOCK DATA units.
• Computed GOTO statements, replaced by SELECT CASE.
• Statement functions.
• DATA statements after executable statements.
• Specific (rather than generic) names for intrinsic functions.
gfortran with option -std=f2018 will warn about these: R will report only in the installation
log.
else
warning("library ", paste(sQuote(nopkgs)),
" contains no package")
}
and was replaced by
if((length(nopkgs) > 0) && !missing(lib.loc)) {
pkglist <- paste(sQuote(nopkgs), collapse = ", ")
msg <- sprintf(ngettext(length(nopkgs),
"library %s contains no packages",
"libraries %s contain no packages",
domain = "R-base"),
pkglist)
warning(msg, domain=NA)
}
Note that it is much better to have complete clauses as here, since in another language one
might need to say ‘There is no package in library %s’ or ‘There are no packages in libraries
%s’.
1.8 Internationalization
There are mechanisms to translate the R- and C-level error and warning messages. There are
only available if R is compiled with NLS support (which is requested by configure option
--enable-nls, the default).
The procedures make use of msgfmt and xgettext which are part of GNU gettext and this
will need to be installed: ‘x86_64’ Windows users can find pre-compiled binaries at https://
www.stats.ox.ac.uk/pub/Rtools/goodies/gettext-tools.zip.
#ifdef ENABLE_NLS
#include <libintl.h>
#define _(String) dgettext ("pkg", String)
/* replace pkg as appropriate */
#else
#define _(String) (String)
#endif
• For each message that should be translated, wrap it in _(...), for example
error(_("'ord' must be a positive integer"));
If you want to use different messages for singular and plural forms, you need to add
#ifndef ENABLE_NLS
#define dngettext(pkg, String, StringP, N) (N == 1 ? String : StringP)
#endif
and mark strings by
dngettext("pkg", <singular string>, <plural string>, n)
• In the package’s src directory run
xgettext --keyword=_ -o pkg.pot *.c
Chapter 1: Creating R packages 80
The file src/pkg.pot is the template file, and conventionally this is shipped as po/pkg.pot.
1.8.2 R messages
Mechanisms are also available to support the automatic translation of R stop, warning and
message messages. They make use of message catalogs in the same way as C-level messages,
but using domain R-pkg rather than pkg. Translation of character strings inside stop, warning
and message calls is automatically enabled, as well as other messages enclosed in calls to gettext
or gettextf. (To suppress this, use argument domain=NA.)
Tools to prepare the R-pkg.pot file are provided in package tools: xgettext2pot will prepare
a file from all strings occurring inside gettext/gettextf, stop, warning and message calls.
Some of these are likely to be spurious and so the file is likely to need manual editing. xgettext
extracts the actual calls and so is more useful when tidying up error messages.
The R function ngettext provides an interface to the C function of the same name: see exam-
ple in the previous section. It is safest to use domain="R-pkg" explicitly in calls to ngettext,
and necessary for earlier versions of R unless they are calls directly from a function in the
package.
## NLME book
bibentry(bibtype = "Book",
title = "Mixed-Effects Models in S and S-PLUS",
author = c(person(c("José", "C."), "Pinheiro"),
person(c("Douglas", "M."), "Bates")),
year = "2000", publisher = "Springer", address = "New York",
doi = "10.1007/b98882")
Note how the first call auto-generates citation information from object meta, a parsed ver-
sion of the DESCRIPTION file – it is tempting to hardcode such information, but it normally
then gets outdated. How the first entry would look like as a bibentry call can be seen from
print(citation("pkgname", auto = TRUE), style = "R") for any installed package. Auto-
generated information is returned by default if no CITATION file is present.
See ?bibentry for further details of the information which can be provided. In case a biben-
try contains LATEX markup (e.g., for accented characters or mathematical symbols), it may be
necessary to provide a text representation to be used for printing via the textVersion argument
to bibentry. E.g., earlier versions of nlme (https://CRAN.R-project.org/package=nlme) ad-
ditionally used something like
textVersion =
paste0("Jose Pinheiro, Douglas Bates, Saikat DebRoy, ",
"Deepayan Sarkar and the R Core Team (",
sub("-.*", "", meta$Date),
"). nlme: Linear and Nonlinear Mixed Effects Models. ",
sprintf("R package version %s", meta$Version), ".")
The CITATION file should itself produce no output when source-d.
It is desirable (and essential for CRAN) that the CITATION file does not contain calls to
functions such as packageDescription which assume the package is installed in a library tree
on the package search path.
1.10.1 Frontend
This is a rather general mechanism, designed for adding new front-ends such as the former
gnomeGUI package (see the Archive area on CRAN). If a configure file is found in the top-
level directory of the package it is executed, and then if a Makefile is found (often generated by
configure), make is called. If R CMD INSTALL --clean is used make clean is called. No other
action is taken.
Chapter 1: Creating R packages 82
R CMD build can package up this type of extension, but R CMD check will check the type and
skip it.
Many packages of this type need write permission for the R installation directory.
1.11 Services
Several members of the R project have set up services to assist those writing R packages,
particularly those intended for public distribution.
win-builder.r-project.org (https://win-builder.r-project.org) offers the automated
preparation of (‘x86_64’) Windows binaries from well-tested source packages.
R-Forge (R-Forge.r-project.org (https://R-Forge.r-project.org)) and RForge
(www.rforge.net (https://www.rforge.net)) are similar services with similar names. Both
provide source-code management through SVN, daily building and checking, mailing lists
and a repository that can be accessed via install.packages (they can be selected by
setRepositories and the GUI menus that use it). Package developers have the opportunity
to present their work on the basis of project websites or news announcements. Mailing lists,
forums or wikis provide useRs with convenient instruments for discussions and for exchanging
information between developers and/or interested useRs.
83
2.1 Rd format
R objects are documented in files written in “R documentation” (Rd) format, a simple markup
language much of which closely resembles (La)TEX, which can be processed into a variety of
formats, including LATEX, HTML and plain text. The translation is carried out by functions in
the tools package called by the script Rdconv in R_HOME/bin and by the installation scripts for
packages.
The R distribution contains more than 1400 such files which can be found in the
src/library/pkg/man directories of the R source tree, where pkg stands for one of the
standard packages which are included in the R distribution.
As an example, let us look at a simplified version of src/library/base/man/load.Rd which
documents the R function load.
% File src/library/base/man/load.Rd
\name{load}
\alias{load}
\title{Reload Saved Datasets}
\description{
Reload datasets written with the function \code{save}.
}
\usage{
load(file, envir = parent.frame(), verbose = FALSE)
}
\arguments{
\item{file}{a (readable binary-mode) \link{connection}
or a character string giving the name of the file to load
(when \link{tilde expansion} is done).}
\item{envir}{the environment where the data should be loaded.}
\item{verbose}{should item names be printed during loading?}
}
\value{
A character vector of the names of objects created, invisibly.
}
\seealso{
\code{\link{save}}.
}
\examples{
## save all data
save(list = ls(all.names = TRUE), file = "all.RData")
An Rd file consists of three parts. The header gives basic information about the name of
the file, the topics documented, a title, a short textual description and R usage information for
the objects documented. The body gives further information (for example, on the function’s
arguments and return value, as in the above example). Finally, there is an optional footer with
keyword information. The header is mandatory.
Information is given within a series of sections with standard names (and user-defined sections
are also allowed). Unless otherwise specified1 these should occur only once in an Rd file (in any
1
e.g. \alias, \keyword and \note sections.
Chapter 2: Writing R documentation files 84
order), and the processing software will retain only the first occurrence of a standard section in
the file, with a warning.
See “Guidelines for Rd files” (https://developer.r-project.org/Rds.html) for guide-
lines for writing documentation in Rd format which should be useful for package writers. The
R generic function prompt is used to construct a bare-bones Rd file ready for manual editing.
Methods are defined for documenting functions (which fill in the proper function and argument
names) and data frames. There are also functions promptData, promptPackage, promptClass,
and promptMethods for other types of Rd files.
The general syntax of Rd files is summarized below. For a detailed technical discussion of
current Rd syntax, see “Parsing Rd files” (https://developer.r-project.org/parseRd.pdf).
Rd files consist of four types of text input. The most common is LATEX-like, with the backslash
used as a prefix on markup (e.g. \alias), and braces used to indicate arguments (e.g. {load}).
The least common type of text is ‘verbatim’ text, where no markup other than the comment
marker (%) is processed. There is also a rare variant of ‘verbatim’ text (used in \eqn, \deqn,
\figure, and \newcommand) where comment markers need not be escaped. The final type is
R-like, intended for R code, but allowing some embedded macros. Quoted strings within R-like
text are handled specially: regular character escapes such as \n may be entered as-is. Only
markup starting with \l (e.g. \link) or \v (e.g. \var) will be recognized within quoted strings.
The rarely used vertical tab \v must be entered as \\v.
Each macro defines the input type for its argument. For example, the file initially uses
LAT EX-like syntax, and this is also used in the \description section, but the \usage section
uses R-like syntax, and the \alias macro uses ‘verbatim’ syntax. Comments run from a percent
symbol % to the end of the line in all types of text except the rare ‘verbatim’ variant (as on the
first line of the load example).
Because backslashes, braces and percent symbols have special meaning, to enter them into
text sometimes requires escapes using a backslash. In general balanced braces do not need to be
escaped, but percent symbols always do, except in the ‘verbatim’ variant. For the complete list
of macros and rules for escapes, see “Parsing Rd files” (https://developer.r-project.org/
parseRd.pdf).
trailing spaces will be stripped. Percent and left brace need to be escaped by a
backslash.
There may be several \alias entries. Quite often it is convenient to document
several R objects in one file. For example, file Normal.Rd documents the density,
distribution function, quantile function and generation of random variates for the
normal distribution, and hence starts with
\name{Normal}
\alias{Normal}
\alias{dnorm}
\alias{pnorm}
\alias{qnorm}
\alias{rnorm}
Also, it is often convenient to have several different ways to refer to an R object,
and an \alias does not need to be the name of an object.
Note that the \name is not necessarily a topic documented, and if so desired it needs
to have an explicit \alias entry (as in this example).
\title{Title}
Title information for the Rd file. This should be capitalized and not end in a period;
try to limit its length to at most 65 characters for widest compatibility.
Markup is supported in the text, but use of characters other than English text and
punctuation (e.g., ‘<’) may limit portability.
There must be one (and only one) \title section in a help file.
\description{...}
A short description of what the function(s) do(es) (one paragraph, a few lines only).
(If a description is too long and cannot easily be shortened, the file probably tries to
document too much at once.) This is mandatory except for package-overview files.
\usage{fun(arg1, arg2, ...)}
One or more lines showing the synopsis of the function(s) and variables documented
in the file. These are set in typewriter font. This is an R-like command.
The usage information specified should match the function definition exactly (such
that automatic checking for consistency between code and documentation is possi-
ble).
To indicate that a function can be used in several different ways, depending on the
named arguments specified, use section \details. E.g., abline.Rd contains
\details{
Typical usages are
\preformatted{abline(a, b, ...)
......
}
Use \method{generic}{class} to indicate the name of an S3 method for the generic
function generic for objects inheriting from class "class". In the printed versions,
this will come out as generic (reflecting the understanding that methods should not
be invoked directly but via method dispatch), but codoc() and other QC tools
always have access to the full name.
For example, print.ts.Rd contains
\usage{
\method{print}{ts}(x, calendar, \dots)
}
Chapter 2: Writing R documentation files 86
ment, so that environment should not be used for listing components, just individual
\item{}{} entries.4
\references{...}
A section with references to the literature. Use \url{} or \href{}{} for web
pointers, and \doi{} for DOIs (this needs R >= 3.3, see Section 2.13 [User-defined
macros], page 98, for more info).
\note{...}
Use this for a special note you want to have pointed out. Multiple \note sections
are allowed, but might be confusing to the end users.
For example, pie.Rd contains
\note{
Pie charts are a very bad way of displaying information.
The eye is good at judging linear measures and bad at
judging relative areas.
......
}
\author{...}
Information about the author(s) of the Rd file. Use \email{} without extra delim-
iters (such as ‘( )’ or ‘< >’) to specify email addresses, or \url{} or \href{}{} for
web pointers.
\seealso{...}
Pointers to related R objects, using \code{\link{...}} to refer to them (\code is
the correct markup for R object names, and \link produces hyperlinks in output
formats which support this. See Section 2.3 [Marking text], page 91, and Section 2.5
[Cross-references], page 93).
\examples{...}
Examples of how to use the function. Code in this section is set in typewriter font
without reformatting and is run by example() unless marked otherwise (see below).
Examples are not only useful for documentation purposes, but also provide test code
used for diagnostic checking of R code. By default, text inside \examples{} will
be displayed in the output of the help page and run by example() and by R CMD
check. You can use \dontrun{} for text that should only be shown, but not run,
and \dontshow{} for extra commands for testing that should not be shown to users,
but will be run by example(). (Previously this was called \testonly, and that is
still accepted.)
Text inside \dontrun{} is ‘verbatim’, but the other parts of the \examples section
are R-like text.
For example,
x <- runif(10) # Shown and run.
\dontrun{plot(x)} # Only shown.
\dontshow{log(x)} # Only run.
Thus, example code not included in \dontrun must be executable! In addition, it
should not use any system-specific features or require special facilities (such as In-
ternet access or write permission to specific directories). Text included in \dontrun
is indicated by comments in the processed help files: it need not be valid R code but
4
\describe can still be used for more general lists, including when \item labels need special markup such as
\var for metasyntactic variables, see Section 2.3 [Marking text], page 91.
Chapter 2: Writing R documentation files 88
the escapes must still be used for %, \ and unpaired braces as in other ‘verbatim’
text.
Example code must be capable of being run by example, which uses source. This
means that it should not access stdin, e.g. to scan() data from the example file.
Data needed for making the examples executable can be obtained by random number
generation (for example, x <- rnorm(100)), or by using standard data sets listed
by data() (see ?data for more info).
Finally, there is \donttest, used (at the beginning of a separate line) to mark
code that should be run by example() but not by R CMD check (by default:
the option --run-donttest can be used). This should be needed only occa-
sionally but can be used for code which might fail in circumstances that are
hard to test for, for example in some locales. (Use e.g. capabilities() or
nzchar(Sys.which("someprogram")) to test for features needed in the examples
wherever possible, and you can also use try() or tryCatch(). Use interactive()
to condition examples which need someone to interact with.) Note that code in-
cluded in \donttest must be correct R code, and any packages used should be
declared in the DESCRIPTION file. It is good practice to include a comment in the
\donttest section explaining why it is needed.
Output from code marked with \dontdiff (requires R >= 4.4.0) or between com-
ment lines
## IGNORE_RDIFF_BEGIN
## IGNORE_RDIFF_END
is ignored when comparing check output to reference output (a pkg-Ex.Rout.save
file). The comment-based markup can also be used for scripts under tests.
\keyword{key}
There can be zero or more \keyword sections per file. Each \keyword section
should specify a single keyword, preferably one of the standard keywords as listed
in file KEYWORDS in the R documentation directory (default R_HOME/doc). Use e.g.
RShowDoc("KEYWORDS") to inspect the standard keywords from within R. There can
be more than one \keyword entry if the R object being documented falls into more
than one category, or none.
Do strongly consider using \concept (see Section 2.9 [Indices], page 96) instead of
\keyword if you are about to use more than very few non-standard keywords.
The special keyword ‘internal’ marks a page of internal topics (typically, objects
that are not part of the package’s API). If the help page for topic foo has keyword
‘internal’, then help(foo) gives this help page, but foo is excluded from several
topic indices, including the alphabetical list of topics in the HTML help system.
help.search() can search by keyword, including user-defined values: however the
‘Search Engine & Keywords’ HTML page accessed via help.start() provides single-
click access only to a pre-defined list of keywords.
\name{rivers}
\docType{data}
\alias{rivers}
\title{Lengths of Major North American Rivers}
\description{
This data set gives the lengths (in miles) of 141 \dQuote{major}
rivers in North America, as compiled by the US Geological
Survey.
}
\usage{rivers}
\format{A vector containing 141 observations.}
\source{World Almanac and Book of Facts, 1975, page 406.}
\references{
McNeil, D. R. (1977) \emph{Interactive Data Analysis}.
New York: Wiley.
}
\keyword{datasets}
Skeletons of documentation for S4 classes and methods can be generated by using the func-
tions promptClass() and promptMethods() from package methods. If it is necessary or desired
to provide an explicit function declaration (in a \usage section) for an S4 method (e.g., if it has
“surprising arguments” to be mentioned explicitly), one can use the special markup
\S4method{generic}{signature_list}(argument_list)
(e.g., ‘\S4method{coerce}{ANY,NULL}(from, to)’).
To make full use of the potential of the on-line documentation system, all user-visible S4
classes and methods in a package should at least have a suitable \alias entry in one of the
package’s Rd files. If a package has methods for a function defined originally somewhere else,
and does not change the underlying default method for the function, the package is responsible
for documenting the methods it creates, but not for the function itself or the default method.
An S4 replacement method is documented in the same way as an S3 one: see the description
of \method in Section 2.1.1 [Documenting functions], page 84.
See help("Documentation", package = "methods") for more information on using and cre-
ating on-line documentation for S4 classes and methods.
2.2 Sectioning
To begin a new paragraph or leave a blank line in an example, just insert an empty line (as in
(La)TEX). To break a line, use \cr.
In addition to the predefined sections (such as \description{}, \value{}, etc.), you can
“define” arbitrary ones by \section{section_title}{...}. For example
\section{Warning}{
You must not call this function unless ...
}
For consistency with the pre-assigned sections, the section name (the first argument to \section)
should be capitalized (but not all upper case) and not end in a period. Whitespace between the
first and second braced expressions is not allowed. Markup (e.g. \code) within the section title
may cause problems with the latex conversion (depending on the version of macro packages such
as ‘hyperref’) and so should be avoided.
The \subsection macro takes arguments in the same format as \section, but is used within
a section, so it may be used to nest subsections within sections or other subsections. There is
no predefined limit on the nesting level, but formatting is not designed for more than 3 levels
(i.e. subsections within subsections within sections).
Chapter 2: Writing R documentation files 91
Note that additional named sections are always inserted at a fixed position in the output
(before \note, \seealso and the examples), no matter where they appear in the input (but in
the same order amongst themselves as in the input).
\pkg{package_name}
Indicate the name of an R package. LATEX-like.
\file{file_name}
Indicate the name of a file. Text is LATEX-like, so backslash needs to be escaped.
Displayed using a distinct font where possible.
\email{email_address}
Indicate an electronic mail address. LATEX-like, will be rendered as a hyperlink in
HTML and PDF conversion. Displayed using typewriter font where possible.
\url{uniform_resource_locator}
Indicate a uniform resource locator (URL) for the World Wide Web. The argument
is handled as ‘verbatim’ text (with percent and braces escaped by backslash), and
rendered as a hyperlink in HTML and PDF conversion. Line feeds are removed, and
leading and trailing whitespace5 is removed. See Section 1.1.8 [Specifying URLs],
page 20.
Displayed using typewriter font where possible.
\href{uniform_resource_locator}{text}
Indicate a hyperlink to the World Wide Web. The first argument is handled as
‘verbatim’ text (with percent and braces escaped by backslash) and is used as the
URL in the hyperlink, with the second argument of LATEX-like text displayed to
the user. Line feeds are removed from the first argument, and leading and trailing
whitespace is removed.
Note that RFC3986-encoded URLs (e.g. using ‘%28VS.85%29’ in place of ‘(VS.85)’)
may not work correctly in versions of R before 3.1.3 and are best avoided—use
URLdecode() to decode them.
\var{metasyntactic_variable}
Indicate a metasyntactic variable. In most cases this will be rendered distinctly, e.g.
in italic (PDF/HTML) or wrapped in ‘<...>’ (text), but not in all6 . LATEX-like.
\env{environment_variable}
Indicate an environment variable. ‘Verbatim’. Displayed using typewriter font
where possible
\option{option}
Indicate a command-line option. ‘Verbatim’. Displayed using typewriter font
where possible.
\command{command_name}
Indicate the name of a command. LATEX-like, so \var is interpreted. Displayed
using typewriter font where possible.
\dfn{term}
Indicate the introductory or defining use of a term. LATEX-like.
\cite{reference}
Indicate a reference without a direct cross-reference via \link (see Section 2.5
[Cross-references], page 93), such as the name of a book. LATEX-like.
\acronym{acronym}
Indicate an acronym (an abbreviation written in all capital letters), such as GNU.
LATEX-like.
5
as defined by the R function trimws.
6
Currently it is rendered differently in HTML conversions, and in LATEX and text conversion outside ‘\usage’
and ‘\examples’ environments.
Chapter 2: Writing R documentation files 93
\abbr{abbr}
Indicates an abbreviation. LATEX-like.
2.5 Cross-references
The markup \link{foo} (usually in the combination \code{\link{foo}}) produces a hyperlink
to the help for foo. Here foo is a topic, that is the argument of \alias markup in another Rd
file (possibly in another package). Hyperlinks are supported in some of the formats to which Rd
files are converted, for example HTML and PDF, but ignored in others, e.g. the text format.
One main usage of \link is in the \seealso section of the help page, see Section 2.1 [Rd
format], page 83.
Note that whereas leading and trailing spaces are stripped when extracting a topic from a
\alias, they are not stripped when looking up the topic of a \link.
Chapter 2: Writing R documentation files 94
You can specify a link to a different topic than its name by \link[=dest]{name} which links
to topic dest with name name. This can be used to refer to the documentation for S3/4 classes,
for example \code{"\link[=abc-class]{abc}"} would be a way to refer to the documentation
of an S4 class "abc" defined in your package, and \code{"\link[=terms.object]{terms}"}
to the S3 "terms" class (in package stats). To make these easy to read in the source file,
\code{"\linkS4class{abc}"} expands to the form given above.
There are two other forms with an optional ‘anchor’ argument, specified as \link[pkg]{foo}
and \link[pkg:bar]{foo}, to link to topics foo and bar respectively in the package pkg. They
are currently only used in HTML help (and ignored for hyperlinks in LATEX conversions of help
pages). One should be careful about topics containing special characters (such as arithmetic
operators) as they may result in unresolvable links, and preferably use a safer alias in the same
help page.
Historically (before R version 4.1.0), links of the form \link[pkg]{foo} and
\link[pkg:bar]{foo} used to be interpreted as links to files foo.html and bar.html in
package pkg, respectively. For this reason, the HTML help system looks for file foo.html in
package pkg if it does not find topic foo, and then searches for the topic in other installed
packages. To test that links work both with both old and new systems, the pre-4.1.0 behaviour
can be restored by setting the environment variable _R_HELP_LINKS_TO_TOPICS_=false.
Packages referred to by these ‘other forms’ should be declared in the DESCRIPTION file, in
the ‘Depends’, ‘Imports’, ‘Suggests’ or ‘Enhances’ fields.
2.6 Mathematics
Mathematical formulae should be set beautifully for printed documentation and in
KaTeX/MathJax-enhanced HTML help (as from R 4.2.0) yet we still want something useful for
plain-text (and legacy HTML) help. To this end, the two commands \eqn{latex}{ascii} and
\deqn{latex}{ascii} are used. Whereas \eqn is used for “inline” formulae (corresponding to
TEX’s $...$), \deqn gives “displayed equations” (as in LATEX’s displaymath environment, or
TEX’s $$...$$). Both arguments are treated as ‘verbatim’ text.
Both commands can also be used as \eqn{latexascii} (only one argument) which then
is used for both latex and ascii. No whitespace is allowed between command and the first
argument, nor between the first and second arguments.
The following example is from Poisson.Rd:
\deqn{p(x) = \frac{\lambda^x e^{-\lambda}}{x!}}{%
p(x) = \lambda^x exp(-\lambda)/x!}
for \eqn{x = 0, 1, 2, \ldots}.
For the LATEX manual and in enhanced HTML help, this becomes
λx e−λ
p(x) =
x!
for x = 0, 1, 2, . . ..
for x = 0, 1, 2, ....
In legacy HTML help, Greek letters (both cases) will be rendered if preceded by a backslash,
\dots and \ldots will be rendered as ellipses and \sqrt, \ge and \le as mathematical symbols.
Chapter 2: Writing R documentation files 95
Note that only basic LATEX can be used, there being no provision to specify LATEX style files,
but AMS extensions are supported as from R 4.2.2.
2.7 Figures
To include figures in help pages, use the \figure markup. There are three forms.
The two commonly used simple forms are \figure{filename} and
\figure{filename}{alternate text}. This will include a copy of the figure in ei-
ther HTML or LATEX output. In text output, the alternate text will be displayed instead.
(When the second argument is omitted, the filename will be used.) Both the filename and
the alternate text will be parsed verbatim, and should not include special characters that are
significant in HTML or LATEX.
The expert form is \figure{filename}{options: string}. (The word ‘options:’ must be
typed exactly as shown and followed by at least one space.) In this form, the string is copied
into the HTML img tag as attributes following the src attribute, or into the second argument
of the \Figure macro in LATEX, which by default is used as options to an \includegraphics
call. As it is unlikely that any single string would suffice for both display modes, the expert
form would normally be wrapped in conditionals. It is up to the author to make sure that legal
HTML/LATEX is used. For example, to include a logo in both HTML (using the simple form) and
LATEX (using the expert form), the following could be used:
\if{html}{\figure{Rlogo.svg}{options: width=100 alt="R logo"}}
\if{latex}{\figure{Rlogo.pdf}{options: width=0.5in}}
The files containing the figures should be stored in the directory man/figures. Files
with extensions .jpg, .jpeg, .pdf, .png and .svg from that directory will be copied to the
help/figures directory at install time. (Figures in PDF format will not display in most HTML
browsers, but might be the best choice in reference manuals.) Specify the filename relative to
man/figures in the \figure directive.
2.8 Insertions
Use \R for the R system itself. The \dots macro is a historical alternative to using literal ‘...’
for the dots in function argument lists; use \ldots for ellipsis dots in ordinary text.7 These
macros can be followed by {}, and should be unless followed by whitespace.
After an unescaped ‘%’, you can put your own comments regarding the help text. The rest
of the line (but not the newline at the end) will be completely disregarded. Therefore, you can
also use it to make part of the “help” invisible.
You can produce a backslash (‘\’) by escaping it by another backslash. (Note that \cr is
used for generating line breaks.)
The “comment” character ‘%’ and unpaired braces8 almost always need to be escaped by
‘\’, and ‘\\’ can be used for backslash and needs to be when there are two or more adjacent
backslashes. In R-like code quoted strings are handled slightly differently; see “Parsing Rd files”
(https://developer.r-project.org/parseRd.pdf) for details – in particular braces should
not be escaped in quoted strings.
All of ‘% { } \’ should be escaped in LATEX-like text.
Text which might need to be represented differently in different encodings should be marked
by \enc, e.g. \enc{Jöreskog}{Joreskog} (with no whitespace between the braces) where the
7
There is only a fine distinction between \dots and \ldots. It is technically incorrect to use \ldots in code
blocks and tools::checkRd will warn about this—on the other hand the current converters treat them the
same way in code blocks, and elsewhere apart from the small distinction between the two in LATEX.
8
See the examples section in the file Paren.Rd for an example.
Chapter 2: Writing R documentation files 96
first argument will be used where encodings are allowed and the second should be ASCII (and
is used for e.g. the text conversion in locales that cannot represent the encoded form). (This is
intended to be used for individual words, not whole sentences or paragraphs.)
2.9 Indices
The \alias command (see Section 2.1.1 [Documenting functions], page 84) is used to specify
the “topics” documented, which should include all R objects in a package such as functions and
variables, data sets, and S4 classes and methods (see Section 2.1.3 [Documenting S4 classes and
methods], page 89). The on-line help system searches the index data base consisting of all alias
topics.
In addition, it is possible to provide “concept index entries” using \concept, which can be
used for help.search() lookups. E.g., file cor.test.Rd in the standard package stats contains
\concept{Kendall correlation coefficient}
\concept{Pearson correlation coefficient}
\concept{Spearman correlation coefficient}
so that e.g. ??Spearman will succeed in finding the help page for the test for association between
paired samples using Spearman’s ρ.
(Note that help.search() only uses “sections” of documentation objects with no additional
markup.)
Each \concept entry should give a single index term (word or phrase), and not use any Rd
markup.
If you want to cross reference such items from other help files via \link, you need to use
\alias and not \concept.
rather than the displayed example in some other format.) Also accepted are TRUE (matching
all formats) and FALSE (matching no formats). These could be the output of the \Sexpr macro
(see Section 2.12 [Dynamic pages], page 97).
The \out{literal} macro would usually be used within the text part of
\if{format}{text}. It causes the renderer to output the literal text exactly, with
no attempt to escape special characters. For example, use the following to output the markup
necessary to display the Greek letter in LATEX or HTML, and the text string alpha in other
formats:
\ifelse{latex}{\out{$\alpha$}}{\ifelse{html}{\out{α}}{alpha}}
Code is only run once in each stage, so a \Sexpr[results=rd] macro can output an \Sexpr
macro designed for a later stage, but not for the current one or any earlier stage.
• width, height, fig These options are currently allowed but ignored.
The \RdOpts macro is used to set new defaults for options to apply to following uses of
\Sexpr.
For more details, see the online document “Parsing Rd files” (https://developer.
r-project.org/parseRd.pdf).
Packages may also define their own common macros; these would be stored in an .Rd file
in man/macros in the package source and will be installed into help/macros when the package
is installed. A package may also use the macros from a different package by listing the other
package in the ‘RdMacros’ field in the DESCRIPTION file.
2.14 Encoding
Rd files are text files and so it is impossible to deduce the encoding they are written in unless
ASCII: files with 8-bit characters could be UTF-8, Latin-1, Latin-9, KOI8-R, EUC-JP, etc. So an
\encoding{} section must be used to specify the encoding if it is not ASCII. (The \encoding{}
section must be on a line by itself, and in particular one containing no non-ASCII characters.
The encoding declared in the DESCRIPTION file will be used if none is declared in the file.) The Rd
files are converted to UTF-8 before parsing and so the preferred encoding for the files themselves
is now UTF-8.
Wherever possible, avoid non-ASCII chars in Rd files, and even symbols such as ‘<’, ‘>’, ‘$’,
‘^’, ‘&’, ‘|’, ‘@’, ‘~’, and ‘*’ outside ‘verbatim’ environments (since they may disappear in fonts
designed to render text). (Function showNonASCIIfile in package tools can help in finding
non-ASCII bytes in the files.)
For convenience, encoding names ‘latin1’ and ‘latin2’ are always recognized: these and
‘UTF-8’ are likely to work fairly widely. However, this does not mean that all characters in
UTF-8 will be recognized, and the coverage of non-Latin characters9 is fairly low. Using LATEX
inputenx (see ?Rd2pdf in R) will give greater coverage of UTF-8.
The \enc command (see Section 2.8 [Insertions], page 95) can be used to provide transliter-
ations which will be used in conversions that do not support the declared encoding.
The LATEX conversion converts the file to UTF-8 from the declared encoding, and includes a
\inputencoding{utf8}
command, and this needs to be matched by a suitable invocation of the \usepackage{inputenc}
command. The R utility R CMD Rd2pdf looks at the converted code and includes the encodings
used: it might for example use
\usepackage[utf8]{inputenc}
(Use of utf8 as an encoding requires LATEX dated 2003/12/01 or later. Also, the use of Cyrillic
characters in ‘UTF-8’ appears to also need ‘\usepackage[T2A]{fontenc}’, and R CMD Rd2pdf
includes this conditionally on the file t2aenc.def being present and environment variable _R_
CYRILLIC_TEX_ being set.)
Note that this mechanism works best with Latin letters: the coverage of UTF-8 in LATEX is
quite low.
R CMD Sweave and R CMD Stangle process vignette-like documentation files (e.g. Sweave vi-
gnettes with extension ‘.Snw’ or ‘.Rnw’, or other non-Sweave vignettes). R CMD Stangle is used
to extract the R code fragments.
The exact usage and a detailed list of available options for all of these commands can be ob-
tained by running R CMD command --help, e.g., R CMD Rdconv --help. All available commands
can be listed using R --help (or Rcmd --help under Windows).
All of these work under Windows. You may need to have installed the the tools to build
packages from source as described in the “R Installation and Administration” manual, although
typically all that is needed is a LATEX installation.
As an example, consider the following code (from Venables & Ripley, 2002, pp. 225–6).
library(MASS); library(boot)
storm.fm <- nls(Time ~ b*Viscosity/(Wt - c), stormer,
start = c(b=30.401, c=2.2183))
st <- cbind(stormer, fit=fitted(storm.fm))
storm.bf <- function(rs, i) {
st$Time <- st$fit + rs[i]
tmp <- nls(Time ~ (b * Viscosity)/(Wt - c), st,
start = coef(storm.fm))
tmp$m$getAllPars()
}
rs <- scale(resid(storm.fm), scale = FALSE) # remove the mean
Rprof("boot.out")
storm.boot <- boot(rs, storm.bf, R = 4999) # slow enough to profile
Rprof(NULL)
Having run this we can summarize the results by
R CMD Rprof boot.out
% total % self
total seconds self seconds name
100.0 25.22 0.2 0.04 "boot"
99.8 25.18 0.6 0.16 "statistic"
96.3 24.30 4.0 1.02 "nls"
33.9 8.56 2.2 0.56 "<Anonymous>"
32.4 8.18 1.4 0.36 "eval"
31.8 8.02 1.4 0.34 ".Call"
28.6 7.22 0.0 0.00 "eval.parent"
28.5 7.18 0.3 0.08 "model.frame"
28.1 7.10 3.5 0.88 "model.frame.default"
17.4 4.38 0.7 0.18 "sapply"
15.0 3.78 3.2 0.80 "nlsModel"
12.5 3.16 1.8 0.46 "lapply"
12.3 3.10 2.7 0.68 "assign"
...
% self % total
self seconds total seconds name
5.7 1.44 7.5 1.88 "inherits"
4.0 1.02 96.3 24.30 "nls"
3.6 0.92 3.6 0.92 "$"
3.5 0.88 28.1 7.10 "model.frame.default"
3.2 0.80 15.0 3.78 "nlsModel"
2.8 0.70 9.8 2.46 "qr.coef"
2.7 0.68 12.3 3.10 "assign"
2.5 0.64 2.5 0.64 ".Fortran"
2.5 0.62 7.1 1.80 "qr.default"
2.2 0.56 33.9 8.56 "<Anonymous>"
2.1 0.54 5.9 1.48 "unlist"
2.1 0.52 7.9 2.00 "FUN"
...
This often produces surprising results and can be used to identify bottlenecks or pieces of R
code that could benefit from being replaced by compiled code.
Two warnings: profiling does impose a small performance penalty, and the output files can
be very large if long runs are profiled at the default sampling interval.
Profiling short runs can sometimes give misleading results. R from time to time performs
garbage collection to reclaim unused memory, and this takes an appreciable amount of time
Chapter 3: Tidying and profiling R code 103
which profiling will charge to whichever function happens to provoke it. It may be useful to
compare profiling code immediately after a call to gc() with a profiling run without a preceding
call to gc.
More detailed analysis of the output can be achieved by the tools in the CRAN packages
proftools (https://CRAN.R-project.org/package=proftools) and profr (https://CRAN.
R-project.org/package=profr): in particular these allow call graphs to be studied.
slows down the code to effectively increase the sampling frequency and it makes each garbage
collection release a smaller amount of memory.
3.4.1.1 perf
This seems the most widely distributed tool. Here is an example on x86_64 Linux using R 4.3.1
built with LTO.
At its simplest
perf record R -f tests/Examples/stats-Ex.R
perf report --sort=dso
perf report --sort=srcfile
rm perf.data*
The first report is
75.67% R
9.25% libc.so.6
4.87% [unknown]
3.75% libz.so.1.2.11
3.37% stats.so
1.17% libm.so.6
0.63% libtirpc.so.3.0.0
0.41% graphics.so
0.30% grDevices.so
0.20% libRblas.so
0.09% libpcre2-8.so.0.11.0
0.07% methods.so
...
which shows which shared libraries (DSOs) the time was spent in.
perf annotate can be used on an application built with GCC and -ggdb: it interleaves
disassembled and source code.
278341 91.9947 R
18290 6.0450 libc.so.6
2277 0.7526 kallsyms
1426 0.4713 stats.so
739 0.2442 libRblas.so
554 0.1831 libz.so.1.2.11
373 0.1233 libm.so.6
352 0.1163 libtirpc.so.3.0.0
153 0.0506 ld-linux-x86-64.so.2
12 0.0040 methods.so
(kallsyms is the kernel.)
The rest of the output is voluminous, and only extracts are shown.
Most of the time within R is spent in
samples % image name symbol name
52955 19.0574 R bcEval.lto_priv.0
16484 5.9322 R Rf_allocVector3
14224 5.1189 R Rf_findVarInFrame3
12581 4.5276 R CONS_NR
8289 2.9830 R Rf_matchArgs_NR
8034 2.8913 R Rf_cons
7114 2.5602 R R_gc_internal.lto_priv.0
6552 2.3579 R Rf_eval
5969 2.1481 R VECTOR_ELT
5684 2.0456 R Rf_applyClosure
5497 1.9783 R findVarLocInFrame.part.0.lto_priv.0
4827 1.7371 R Rf_mkPROMISE
4609 1.6587 R Rf_install
4317 1.5536 R Rf_findFun3
4035 1.4521 R getvar.lto_priv.0
3491 1.2563 R SETCAR
3179 1.1441 R Rf_defineVar
2892 1.0408 R duplicate1.lto_priv.0
and in stats.so
samples % image name symbol name
285 24.4845 stats.so termsform
284 24.3986 stats.so numeric_deriv
213 18.2990 stats.so modelframe
114 9.7938 stats.so nls_iter
55 4.7251 stats.so ExtractVars
47 4.0378 stats.so EncodeVars
37 3.1787 stats.so getListElement
32 2.7491 stats.so TrimRepeats
25 2.1478 stats.so InstallVar
20 1.7182 stats.so MatchVar
20 1.7182 stats.so isZeroOne
15 1.2887 stats.so ConvInfoMsg.isra.0
The profiling data is by default stored in sub-directory oprofile_data of the current direc-
tory, which can be removed at the end of the session.
Chapter 3: Tidying and profiling R code 107
3.4.1.3 sprof
You can select shared objects to be profiled with sprof by setting the environment variable
LD_PROFILE. For example
% setenv LD_PROFILE /path/to/R_HOME/library/stats/libs/stats.so
% R -f boot.R
% sprof /path/to/R_HOME/library/stats/libs/stats.so \
/var/tmp/path/to/R_HOME/library/stats/libs/stats.so.profile
Flat profile:
4 Debugging
This chapter covers the debugging of R extensions, starting with the ways to get useful error
information and moving on to how to deal with errors that crash R.
4.1 Browsing
Most of the R-level debugging facilities are based around the built-in browser. This can be
used directly by inserting a call to browser() into the code of a function (for example, using
fix(my_function) ). When code execution reaches that point in the function, control returns
to the R console with a special prompt. For example
> fix(summary.data.frame) ## insert browser() call after for() loop
> summary(women)
Called from: summary.data.frame(women)
Browse[1]> ls()
[1] "digits" "i" "lbs" "lw" "maxsum" "ncw" "nm" "nr"
[9] "nv" "object" "sms" "z"
Browse[1]> maxsum
[1] 7
Browse[1]> c
height weight
Min. :58.0 Min. :115.0
1st Qu.:61.5 1st Qu.:124.5
Median :65.0 Median :135.0
Mean :65.0 Mean :136.7
3rd Qu.:68.5 3rd Qu.:148.0
Max. :72.0 Max. :164.0
> rm(summary.data.frame)
At the browser prompt one can enter any R expression, so for example ls() lists the objects in
the current frame, and entering the name of an object will1 print it. The following commands
are also accepted
• n
Enter ‘step-through’ mode. In this mode, hitting the return key (RET) executes the next
line of code (more precisely one line and any continuation lines). Typing c will continue to
the end of the current context, e.g. to the end of the current loop or function.
• c
In normal mode, this quits the browser and continues execution, and just return works in
the same way. cont is a synonym.
• where
This prints the call stack. For example
> summary(women)
Called from: summary.data.frame(women)
Browse[1]> where
where 1: summary.data.frame(women)
where 2: summary(women)
Browse[1]>
1
With the exceptions of the commands listed below: an object of such a name can be printed via an explicit
call to print.
Chapter 4: Debugging 109
• Q
Quit both the browser and the current expression, and return to the top-level prompt.
Errors in code executed at the browser prompt will normally return control to the browser
prompt. Objects can be altered by assignment, and will keep their changed values when the
browser is exited. If really necessary, objects can be assigned to the workspace from the browser
prompt (by using <<- if the name is not already in scope).
Selection:
which is very similar to dump.frames. However, we can examine the state of the program
directly, without dumping and re-loading the dump. As its help page says, recover can be
routinely used as the error action in place of dump.calls and dump.frames, since it behaves
like dump.frames in non-interactive use.
Post-mortem debugging is good for finding out exactly what went wrong, but not necessarily
why. An alternative approach is to take a closer look at what was happening just before the
error, and a good way to do that is to use debug. This inserts a call to the browser at the
beginning of the function, starting in step-through mode. So in our example we could use
> debug(glm.fit)
> glm(resp ~ 0 + predictor, family = binomial(link ="log"))
debugging in: glm.fit(x = X, y = Y, weights = weights, start = start, etastart = etastart,
mustart = mustart, offset = offset, family = family, control = control,
Chapter 4: Debugging 112
access: in particular damage to the structures which R itself has allocated may only become
apparent at the next garbage collection (or even at later garbage collections after objects have
been deleted).
Note that memory access errors may be seen with LAPACK, BLAS, OpenMP and Java-
using packages: some at least of these seem to be intentional, and some are related to passing
characters to Fortran.
Some of these tools can detect mismatched allocation and deallocation. C++ programmers
should note that memory allocated by new [] must be freed by delete [], other uses of new by
delete, and memory allocated by malloc, calloc and realloc by free. Some platforms will
tolerate mismatches (perhaps with memory leaks) but others will segfault.
This example is from an instrumented version of R, while tracking down a bug in the Matrix
(https://CRAN.R-project.org/package=Matrix) package in 2006. The first line indicates that
R has tried to read 4 bytes from a memory address that it does not have access to. This is fol-
lowed by a C stack trace showing where the error occurred. Next is a description of the memory
that was accessed. It is inside a block allocated by malloc, called from GetNewPage, that is,
in the internal R heap. Since this memory all belongs to R, valgrind would not (and did not)
detect the problem in an uninstrumented build of R. In this example the stack trace was enough
to isolate and fix the bug, which was in tsc_transpose, and in this example running under
gctorture() did not provide any additional information.
valgrind is good at spotting the use of uninitialized values: use option --track-
origins=yes to show where these originated from. What it cannot detect is the misuse of
arrays allocated on the stack: this includes C automatic variables and some6 Fortran arrays.
3
in some distributions packaged separately, for example as valgrind-devel.
4
Those in some numeric, logical, integer, raw, complex vectors and in memory allocated by R_alloc.
5
including using the data sections of R vectors after they are freed.
6
small fixed-size arrays by default in gfortran, for example.
Chapter 4: Debugging 115
It is possible to run all the examples, tests and vignettes covered by R CMD check under
valgrind by using the option --use-valgrind. If you do this you will need to select the
valgrind options some other way, for example by having a ~/.valgrindrc file containing
--leak-check=full
--track-origins=yes
or setting the environment variable VALGRIND_OPTS. As from R 4.2.0, --use-valgrind also uses
valgrind when re-building the vignettes.
This section has described the use of memtest, the default (and most useful) of valgrind’s
tools. There are others described in its documentation: helgrind can be useful for threaded
programs.
7
currently on ‘x86_64’/‘ix86’ Linux and FreeBSD, with some support for macOS – see https://developer.
apple.com/documentation/xcode/diagnosing-memory-thread-and-crash-issues-early. (There is a faster
variant, HWASAN, for ‘aarch64’ only.) On some platforms the runtime library, libasan, needs to be installed
separately, and for checking C++ you may also need libubsan.
8
see https://llvm.org/devmtg/2014-04/PDFs/LightningTalks/EuroLLVM%202014%20--%20container%20overflow.
pdf.
9
part of the LLVM project and distributed in llvm RPMs and .debs on Linux. It is not currently shipped by
Apple.
10
as Ubuntu has been said to do.
11
installed on some Linux systems as asan_symbolize, and obtainable from https://github.com/
llvm/llvm-project/blob/main/compiler-rt/lib/asan/scripts/asan_symbolize.py: it makes use of llvm-
symbolizer if available.
Chapter 4: Debugging 116
which will ensure that the libasan run-time library is compiled into the R executable. However
this check can be enabled on a per-package basis by using a ~/.R/Makevars file like
CC = gcc -std=gnu99 -fsanitize=address -fno-omit-frame-pointer
CXX = g++ -fsanitize=address -fno-omit-frame-pointer
FC = gfortran -fsanitize=address
(Note that -fsanitize=address has to be part of the compiler specification to ensure it is used
for linking. These settings will not be honoured by packages which ignore ~/.R/Makevars.) It
will be necessary to build R with
MAIN_LDFLAGS = -fsanitize=address
to link the runtime libraries into the R executable if it was not specified as part of ‘CC’ when R
was built. (For some builds without OpenMP, -pthread is also required.)
For options available via the environment variable ASAN_OPTIONS see https://github.com/
google/sanitizers/wiki/AddressSanitizerFlags. With gcc additional control is available
via the --param flag: see its man page.
For more detailed information on an error, R can be run under a debugger with a breakpoint
set before the address sanitizer report is produced: for gdb or lldb you could use
break __asan_report_error
(See https://github.com/google/sanitizers/wiki/AddressSanitizerAndDebugger.)
More recent versions12 added the flag -fsanitize-address-use-after-scope: see
https://github.com/google/sanitizers/wiki/AddressSanitizerUseAfterScope.
One of the checks done by ASan is that malloc/free and in C++ new/delete and
new[]/delete[] are used consistently (rather than say free being used to deallocate mem-
ory allocated by new[]). This matters on some systems but not all: unfortunately on some
of those where it does not matter, system libraries13 are not consistent. The check can be
suppressed by including ‘alloc_dealloc_mismatch=0’ in ASAN_OPTIONS.
ASan also checks system calls and sometimes reports can refer to problems in the system
software and not the package nor R. A couple of reports have been of ‘heap-use-after-free’ errors
in the X11 libraries called from Tcl/Tk.
Apple provide a version of the address sanitizer in recent versions of its C/C++ compiler.
This will probably give messages about ‘malloc: nano zone abandoned’ which are innocuous
and can be suppressed by setting environment variable MallocNanoZone to 0. It can be helpful
to install debug symbols (INSTALL --dsym for the package under test and particularly for reverse
dependencies.
To disable this, allocation-mismatch checking and some strict C++ checking use
setenv ASAN_OPTIONS 'alloc_dealloc_mismatch=0:detect_leaks=0:detect_odr_violation=0'
The leak sanitizer is not part of ASan in the Apple clang implementation.
LSan also has a ‘stand-alone’ mode where it is compiled in using -fsanitize=leak and
avoids the run-time overhead of ASan.
UBSAN_DIR = /path/to/LLVM18/lib/clang/18/lib/x86_64-unknown-linux-gnu
SAN_LIBS = $(UBSAN_DIR)/libclang_rt.ubsan_standalone.a $(UBSAN_DIR)/libclang_rt.ubsan_s
which links the UBSAN libraries statically into the package-under-test’s DSO. It is also possible
to use the dynamic library via
SAN_LIBS = -L$(UBSAN_DIR) -Wl,-rpath,$(UBSAN_DIR) -lclang_rt.ubsan_standalone
provided UBSAN_DIR is added to the runtime library path (as shown or using LD_LIBRARY_PATH).
N.B.: The details, especially the paths used, have changed several times recently.
Apple provides a version of the undefined behaviour sanitizer in recent versions of its C/C++
compiler. R was built with Apple clang 16 with config.site containing
CC="clang -fsanitize=address,undefined"
CXX="clang++ -fsanitize=address,undefined"
and passed its checks.
Chapter 4: Debugging 119
Consider first ‘crashes’, that is when R terminated unexpectedly with an illegal memory
access (a ‘segfault’ or ‘bus error’), illegal instruction or similar. Unix-alike versions of R use a
signal handler which aims to give some basic information. For example
*** caught segfault ***
address 0x20000028, cause 'memory not mapped'
Traceback:
1: .identC(class1[[1]], class2)
2: possibleExtends(class(sloti), classi, ClassDef2 = getClassDef(classi,
where = where))
3: validObject(t(cu))
4: stopifnot(validObject(cu <- as(tu, "dtCMatrix")), validObject(t(cu)),
validObject(t(tu)))
Possible actions:
1: abort (with core dump)
2: normal R exit
3: exit R without saving workspace
4: exit R saving workspace
Selection: 3
Since the R process may be damaged, the only really safe options are the first or third. (Note
that a core dump is only produced where enabled: a common default in a shell is to limit its
size to 0, thereby disabling it.)
A fairly common cause of such crashes is a package which uses .C or .Fortran and writes
beyond (at either end) one of the arguments it is passed. There is a good way to detect this:
using options(CBoundsCheck = TRUE) (which can be selected via the environment variable R_
C_BOUNDS_CHECK=yes) changes the way .C and .Fortran work to check if the compiled code
writes in the 64 bytes at either end of an argument.
Another cause of a ‘crash’ is to overrun the C stack. R tries to track that in its own code,
but it may happen in third-party compiled code. For modern POSIX-compliant OSes R can
safely catch that and return to the top-level prompt, so one gets something like
> .C("aaa")
Error: segfault from C stack overflow
>
However, C stack overflows are fatal under Windows and normally defeat attempts at debugging
on that platform. Further, the size of the stack is set when R is compiled on Windows, whereas
on POSIX OSes it can be set in the shell from which R is launched.
If you have a crash which gives a core dump you can use something like
gdb /path/to/R/bin/exec/R core.12345
to examine the core dump. If core dumps are disabled or to catch errors that do not generate a
dump one can run R directly under a debugger by for example
$ R -d gdb --vanilla
...
gdb> run
at which point R will run normally, and hopefully the debugger will catch the error and return
to its prompt. This can also be used to catch infinite loops or interrupt very long-running code.
For a simple example
> for(i in 1:1e7) x <- rnorm(100)
[hit Ctrl-C]
Chapter 4: Debugging 121
By setting a breakpoint at do_get and typing get("DF") at the R prompt, one can find out the
address in memory of DF, for example
Value returned is $1 = (SEXPREC *) 0x40583e1c
(gdb) p *$1
$2 = {
sxpinfo = {type = 19, obj = 1, named = 1, gp = 0,
mark = 0, debug = 0, trace = 0, = 0},
attrib = 0x40583e80,
u = {
vecsxp = {
length = 2,
type = {c = 0x40634700 "0>X@D>X@0>X@", i = 0x40634700,
f = 0x40634700, z = 0x40634700, s = 0x40634700},
truelength = 1075851272,
},
primsxp = {offset = 2},
symsxp = {pname = 0x2, value = 0x40634700, internal = 0x40203008},
listsxp = {carval = 0x2, cdrval = 0x40634700, tagval = 0x40203008},
envsxp = {frame = 0x2, enclos = 0x40634700},
closxp = {formals = 0x2, body = 0x40634700, env = 0x40203008},
promsxp = {value = 0x2, expr = 0x40634700, env = 0x40203008}
}
}
(Debugger output reformatted for better legibility).
Using R_PV() one can “inspect” the values of the various elements of the SEXP, for example,
(gdb) p R_PV($1->attrib)
$names
[1] "a" "b"
$row.names
[1] "1" "2" "3"
$class
[1] "data.frame"
$3 = void
To find out where exactly the corresponding information is stored, one needs to go “deeper”:
(gdb) set $a = $1->attrib
(gdb) p $a->u.listsxp.tagval->u.symsxp.pname->u.vecsxp.type.c
$4 = 0x405d40e8 "names"
(gdb) p $a->u.listsxp.carval->u.vecsxp.type.s[1]->u.vecsxp.type.c
$5 = 0x40634378 "b"
(gdb) p $1->u.vecsxp.type.s[0]->u.vecsxp.type.i[0]
$6 = 1
(gdb) p $1->u.vecsxp.type.s[1]->u.vecsxp.type.i[1]
$7 = 5
Another alternative is the R_inspect function which shows the low-level structure of the ob-
jects recursively (addresses differ from the above as this example is created on another machine):
Chapter 4: Debugging 123
(gdb) p R_inspect($1)
@100954d18 19 VECSXP g0c2 [OBJ,NAM(2),ATT] (len=2, tl=0)
@100954d50 13 INTSXP g0c2 [NAM(2)] (len=3, tl=0) 1,2,3
@100954d88 13 INTSXP g0c2 [NAM(2)] (len=3, tl=0) 4,5,6
ATTRIB:
@102a70140 02 LISTSXP g0c0 []
TAG: @10083c478 01 SYMSXP g0c0 [MARK,NAM(2),gp=0x4000] "names"
@100954dc0 16 STRSXP g0c2 [NAM(2)] (len=2, tl=0)
@10099df28 09 CHARSXP g0c1 [MARK,gp=0x21] "a"
@10095e518 09 CHARSXP g0c1 [MARK,gp=0x21] "b"
TAG: @100859e60 01 SYMSXP g0c0 [MARK,NAM(2),gp=0x4000] "row.names"
@102a6f868 13 INTSXP g0c1 [NAM(2)] (len=2, tl=1) -2147483648,-3
TAG: @10083c948 01 SYMSXP g0c0 [MARK,gp=0x4000] "class"
@102a6f838 16 STRSXP g0c1 [NAM(2)] (len=1, tl=1)
@1008c6d48 09 CHARSXP g0c2 [MARK,gp=0x21,ATT] "data.frame"
In general the representation of each object follows the format:
@<address> <type-nr> <type-name> <gc-info> [<flags>] ...
For a more fine-grained control over the depth of the recursion and the output of vectors
R_inspect3 takes additional two character() parameters: maximum depth and the maximal
number of elements that will be printed for scalar vectors. The defaults in R_inspect are
currently -1 (no limit) and 5 respectively.
16
By default as a security measure: see man dyld.
Chapter 4: Debugging 124
does17 and use install_name_tool, but that would have to be done for all the dylibs including
those in packages.
It may be simplest to attach the debugger to a running process (see above). Specifically, run
R and when it is at the prompt just before a command that is to be debugged, at a terminal
ps -ef | grep exec/R
# identify the PID pid for the next command: it is the second item
lldb -p pid
(lldb) continue
and then return to the R console.
For non-interactive use, one may need lldb --batch.
*info, work1)
1
Warning: Missing actual argument for argument 'dum' at (1)
and
all.f:1663:72:
complex type: however, it may not be possible to pass Rcomplex to a C99 function expecting
a double complex argument. Nor need it be compatible with a C++ complex type. Moreover,
the compatibility can depend on the optimization level set for the compiler.)
Only a single character string of fixed length can be passed to or from Fortran (the length
is not passed), and the success of this is compiler-dependent: its use was formally deprecated
in 2019. Other R objects can be passed to .C, but it is much better to use one of the other
interfaces.
It is possible to pass numeric vectors of storage mode double to C as float * or to Fortran as
REAL by setting the attribute Csingle, most conveniently by using the R functions as.single,
single or mode. This is intended only to be used to aid interfacing existing C or Fortran code.
Logical values are sent as 0 (FALSE), 1 (TRUE) or INT_MIN = -2147483648 (NA, but only if
NAOK is true), and the compiled code should return one of these three values. (Non-zero values
other than INT_MIN are mapped to TRUE.) Note that the use of int * for Fortran logical is
not guaranteed to be portable (although people have gotten away with it for many years): it is
better to pass integers and convert to/from Fortran logical in a Fortran wrapper.
Unless formal argument NAOK is true, all the other arguments are checked for missing values
NA and for the IEEE special values NaN, Inf and -Inf, and the presence of any of these generates
an error. If it is true, these values are passed unchecked.
Argument PACKAGE confines the search for the symbol name to a specific shared object (or
use "base" for code compiled into R). Its use is highly desirable, as there is no way to avoid two
package writers using the same symbol name, and such name clashes are normally sufficient to
cause R to crash. (If it is not present and the call is from the body of a function defined in a
package namespace, the shared object loaded by the first (if any) useDynLib directive will be
used.)
Note that the compiled code should not return anything except through its arguments: C
functions should be of type void and Fortran subprograms should be subroutines.
To fix ideas, let us consider a very simple example which convolves two finite sequences.
(This is hard to do fast in interpreted R code, but easy in C code.) We could do this using .C
by
void convolve(double *a, int *na, double *b, int *nb, double *ab)
{
int nab = *na + *nb - 1;
Special care is needed in handling character vector arguments in C (or C++). On entry the
contents of the elements are duplicated and assigned to the elements of a char ** array, and on
exit the elements of the C array are copied to create new elements of a character vector. This
means that the contents of the character strings of the char ** array can be changed, including
to \0 to shorten the string, but the strings cannot be lengthened. It is possible3 to allocate a
new string via R_alloc and replace an entry in the char ** array by the new string. However,
when character vectors are used other than in a read-only way, the .Call interface is much to
be preferred.
Passing character strings to Fortran code needs even more care, is deprecated and should be
avoided where possible. Only the first element of the character vector is passed in, as a fixed-
length (255) character array. Up to 255 characters are passed back to a length-one character
vector. How well this works (or even if it works at all) depends on the C and Fortran compilers
on each platform (including on their options). Often what is being passed to Fortran is one of
a small set of possible values (a factor in R terms) which could alternatively be passed as an
integer code: similarly Fortran code that wants to generate diagnostic messages could pass an
integer code to a C or R wrapper which would convert it to a character string.
It is possible to pass some R objects other than atomic vectors via .C, but this is only
supported for historical compatibility: use the .Call or .External interfaces for such objects.
Any C/C++ code that includes Rinternals.h should be called via .Call or .External.
.Fortran is primarily intended for Fortran 77 code, and long precedes any support for ‘mod-
ern’ Fortran. Nowadays implementations of Fortran support the Fortran 2003 module iso_c_
binding, a better way to interface modern Fortran code to R is to use .C and write a C interface
using use iso_c_binding.
sary: in particular using now=FALSE and then calling an unresolved symbol will terminate R
unceremoniously.
R provides a way of executing some code automatically when a object/DLL is either loaded
or unloaded. This can be used, for example, to register native routines with R’s dynamic symbol
mechanism, initialize some data in the native code, or initialize a third party library. On loading
a DLL, R will look for a routine within that DLL named R_init_lib where lib is the name of
the DLL file with the extension removed. For example, in the command
library.dynam("mylib", package, lib.loc)
R looks for the symbol named R_init_mylib. Similarly, when unloading the object, R looks for
a routine named R_unload_lib, e.g., R_unload_mylib. In either case, if the routine is present,
R will invoke it and pass it a single argument describing the DLL. This is a value of type DllInfo
which is defined in the Rdynload.h file in the R_ext directory.
Note that there are some implicit restrictions on this mechanism as the basename of the DLL
needs to be both a valid file name and valid as part of a C entry point (e.g. it cannot contain ‘.’):
for portable code it is best to confine DLL names to be ASCII alphanumeric plus underscore. If
entry point R_init_lib is not found it is also looked for with ‘.’ replaced by ‘_’.
The following example shows templates for the initialization and unload routines for the
mylib DLL.
#include <R_ext/Rdynload.h>
void
R_init_mylib(DllInfo *info)
{
/* Register routines,
allocate resources. */
}
void
R_unload_mylib(DllInfo *info)
{
/* Release resources. */
}
If a shared object/DLL is loaded more than once the most recent version is used.4 More
generally, if the same symbol name appears in several shared objects, the most recently loaded
occurrence is used. The PACKAGE argument and registration (see the next section) provide good
ways to avoid any ambiguity in which occurrence is meant.
On Unix-alikes the paths used to resolve dynamically-linked dependent libraries are fixed (for
security reasons) when the process is launched, so dyn.load will only look for such libraries in
the locations set by the R shell script (via etc/ldpaths) and in the OS-specific defaults.
Windows allows more control (and less security) over where dependent DLLs are looked for.
On all versions this includes the PATH environment variable, but with lowest priority: note that
it does not include the directory from which the DLL was loaded. It is possible to add a single
path with quite high priority via the DLLpath argument to dyn.load. This is (by default) used
by library.dynam to include the package’s libs/x64 directory (on Intel) in the DLL search
path.
4
Strictly this is OS-specific, but no exceptions have been seen for many years.
Chapter 5: System and foreign language interfaces 130
logical LGLSXP
single SINGLESXP
character STRSXP
list VECSXP
Consider a C routine, myC, declared as
void myC(double *x, int *n, char **names, int *status);
We would register it as
static R_NativePrimitiveArgType myC_type[] = {
REALSXP, INTSXP, STRSXP, LGLSXP
};
SEXP foo(SEXP x)
{
return x;
}
If we compile with by R CMD SHLIB foo.c, load the code by dyn.load("foo.so") and run
foo(pi) it took around 22 microseconds (us). Specifying the DLL by
foo2 <- function(x) .Call("foo", x, PACKAGE = "foo")
reduced the time to 1.7 us.
Now consider making these functions part of a package whose NAMESPACE file uses
useDynlib(foo). This immediately reduces the running time as "foo" will be preferentially
Chapter 5: System and foreign language interfaces 133
looked for foo.dll. Without specifying PACKAGE it took about 5 us (it needs to fathom out
the appropriate DLL each time it is invoked but it does not need to search all DLLs), and with
the PACKAGE argument it is again about 1.7 us.
Next suppose the package has registered the native routine foo. Then foo() still has to find
the appropriate DLL but can get to the entry point in the DLL faster, in about 4.2 us. And
foo2() now takes about 1 us. If we register the symbols in the NAMESPACE file and use
foo3 <- function(x) .Call(C_foo, x)
then the address for the native routine is looked up just once when the package is loaded, and
foo3(pi) takes about 0.8 us.
Versions using .C() rather than .Call() took about 0.2 us longer.
These are all quite small differences, but C routines are not uncommonly invoked millions
of times for run times of a few microseconds each, and those doing such things may wish to be
aware of the differences.
On Linux and Solaris there is a smaller overhead in looking up symbols.
Symbol lookup on Windows used to be far slower, so R maintains a small cache. If the cache
is currently empty enough that the symbol can be stored in the cache then the performance
is similar to Linux and Solaris: if not it may be slower. R’s own code always uses registered
symbols and so these never contribute to the cache: however many other packages do rely on
symbol lookup.
In more recent versions of R all the standard packages register native symbols and do not
allow symbol search, so in a new session foo() can only look in foo.so and may be as fast
as foo2(). This will no longer apply when many contributed packages are loaded, and gen-
erally those last loaded are searched first. For example, consider R 3.3.2 on x86 64 Linux.
In an empty R session, both foo() and foo2() took about 0.75 us; however after pack-
ages igraph (https://CRAN.R-project.org/package=igraph) and spatstat (https://CRAN.
R-project.org/package=spatstat) had been loaded (which loaded another 12 DLLs), foo()
took 3.6 us but foo2() still took about 0.80 us. Using registration in a package reduced this
to 0.55 us and foo3() took 0.40 us, times which were unchanged when further packages were
loaded.
Tools are available to extract declarations, at least for C and C++ code: see the help file for
package_native_routine_registration_skeleton in package tools. Here we could have
used
cproto -I/path/to/R/include -e splines.c
For examples of registering other types of calls, see packages graphics and stats. In partic-
ular, when registering entry points for .Fortran one needs declarations as if called from C,
such as
#include <R_ext/RS.h>
void F77_NAME(supsmu)(int *n, double *x, double *y,
double *w, int *iper, double *span, double *alpha,
double *smo, double *sc, double *edf);
gfortran 8.4, 9.2 and later can help generate such prototypes with its flag -fc-prototypes-
external (although one will need to replace the hard-coded trailing underscore with the
F77_NAME macro).
One can get away with inaccurate argument lists in the declarations: it is easy to specify
the arguments for .Call (all SEXP) and .External (one SEXP) and as the arguments for .C
and .Fortran are all pointers, specifying them as void * suffices. (For most platforms one
can omit all the arguments, although link-time optimization will warn, as will compilers set
up to warn on strict prototypes – and C23 requires correct arguments.)
Using -fc-prototypes-external will give a prototype using int_least32_t *lgl for For-
tran LOGICAL LGL, but this is not portable and traditionally it has been assumed that the
C/C++ equivalent was int *lgl. If adding a declaration just to register a .Fortran call,
the most portable version is void *lgl.
• (Optional but highly recommended.) Restrict .Call etc to use the symbols you chose to
register by editing src/init.c to contain
Chapter 5: System and foreign language interfaces 135
SEXP attribute_hidden
spline_basis(SEXP knots, SEXP order, SEXP xvals, SEXP derivs)
...
SEXP attribute_hidden
spline_value(SEXP knots, SEXP coeff, SEXP order, SEXP x, SEXP deriv)
...
8
generally those with an ELF linker and macOS from R 4.5.0.
Chapter 5: System and foreign language interfaces 136
Alternatively, we can change the default visibility for all C symbols by including
PKG_CFLAGS = $(C_VISIBILITY)
in src/Makevars, and then we need to allow registration by declaring R_init_splines to
be visible:
#include <R_ext/Visibility.h>
void attribute_visible
R_init_splines(DllInfo *dll)
...
See Section 6.18 [Controlling visibility], page 194, for more details, including using Fortran
code and ways to restrict visibility on Windows.
• We end up with a file src/init.c containing
#include <stdlib.h>
#include <R_ext/Rdynload.h>
#include <R_ext/Visibility.h> // optional
#include "splines.h"
void
attribute_visible // optional
R_init_splines(DllInfo *dll)
{
R_registerRoutines(dll, NULL, R_CallDef, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
R_forceSymbols(dll, TRUE);
}
As the type DL_FUNC is only appropriate for functions with no arguments, other users will need
to cast to an appropriate type. For example
typedef SEXP (*na_omit_xts_func) (SEXP x);
...
na_omit_xts_func fun = (na_omit_xts_func) R_GetCCallable("xts", "na_omit_xts");
return fun(x);
The author of packB is responsible for ensuring that p_myCfun has an appropriate declaration.
In the future R may provide some automated tools to simplify exporting larger numbers of
routines.
A package that wishes to make use of header files in other packages needs to declare them
as a comma-separated list in the field ‘LinkingTo’ in the DESCRIPTION file. This then arranges
for the include directories in the installed linked-to packages to be added to the include paths
for C and C++ code.
It must specify9 ‘Imports’ or ‘Depends’ of those packages, for they have to be loaded10 prior
to this one (so the path to their compiled code has been registered).
CRAN examples of the use of this mechanism include coxme (https://CRAN.R-project.org/
package=coxme) linking to bdsmatrix (https://CRAN.R-project.org/package=bdsmatrix)
and xts (https://CRAN.R-project.org/package=xts) linking to zoo (https://CRAN.
R-project.org/package=zoo).
NB: this mechanism is fragile, as changes to the interface provided by packA have to be
recognised by packB. The consequences of not doing so have included serious corruption to the
memory pool of the R session. Either packB has to depend on the exact version of packA or
there needs to be a mechanism for packB to test at runtime the version of packA it is linked to
matches that it was compiled against.
On rare occasions in can be useful for C code in one package to dynamically look up the
address in another package. This can be done using R_FindSymbol:
DL_FUNC R_FindSymbol(char const *name, char const *pkg,
R_RegisteredNativeSymbol *symbol);
Flags that are already set (for example in file etcR_ARCH/Makeconf) can be overridden by
the environment variable MAKEFLAGS (at least for systems using a POSIX-compliant make), as
in (Bourne shell syntax)
It is also possible to set such variables in personal Makevars files, which are read after the
local Makevars and the system makefiles or in a site-wide Makevars.site file. See Section
“Customizing package compilation” in R Installation and Administration for more information.
Note that as R CMD SHLIB uses Make, it will not remake a shared object just because the flags
have changed, and if test.c and test.f both exist in the current directory
If the src subdirectory of an add-on package contains source code with one of the extensions
listed above or a file Makevars but not a file Makefile, R CMD INSTALL creates a shared object
(for loading into R through useDynlib in the NAMESPACE, or in the .onLoad function of the
package) using the R CMD SHLIB mechanism. If file Makevars exists it is read first, then the
system makefile and then any personal Makevars files.
If the src subdirectory of package contains a file Makefile, this is used by R CMD
INSTALL in place of the R CMD SHLIB mechanism. make is called with makefiles R_HOME/etcR_
ARCH/Makeconf, src/Makefile and any personal Makevars files (in that order). The first
target found in src/Makefile is used.
It is better to make use of a Makevars file rather than a Makefile: the latter should be
needed only exceptionally.
Under Windows the same commands work, but Makevars.win will be used in preference
to Makevars, and only src/Makefile.win will be used by R CMD INSTALL with src/Makefile
being ignored. Since R 4.2.0, Makevars.ucrt will be used in preference to Makevars.win and
src/Makefile.ucrt will be used in preference to src/Makefile.win. For past experiences of
building DLLs with a variety of compilers, see file ‘README.packages’. Under Windows you
can supply an exports definitions file called dllname-win.def: otherwise all entry points in
objects (but not libraries) supplied to R CMD SHLIB will be exported from the DLL. An example
is stats-win.def for the stats package: a CRAN example in package fastICA (https://CRAN.
R-project.org/package=fastICA).
If you feel tempted to read the source code and subvert these mechanisms, please resist. Far
too much developer time has been wasted in chasing down errors caused by failures to follow
this documentation, and even more by package authors demanding explanations as to why their
packages no longer work. In particular, undocumented environment or make variables are not
for use by package writers and are subject to change without notice.
// X.h
class X {
public: X (); ~X ();
};
class Y {
public: Y (); ~Y ();
};
// X.cpp
#include <R.h>
#include "X.h"
static Y y;
To use with R, the only thing we have to do is writing a wrapper function and ensuring that
the function is enclosed in
extern "C" {
}
For example,
// X_main.cpp:
#include "X.h"
extern "C" {
void X_main () {
X x;
}
} // extern "C"
Compiling and linking should be done with the C++ compiler-linker (rather than the C
compiler-linker or the linker itself); otherwise, the C++ initialization code (and hence the con-
structor of the static variable Y) are not called. On a properly configured system, one can simply
use
R CMD SHLIB X.cpp X_main.cpp
Chapter 5: System and foreign language interfaces 140
to create the shared object, typically X.so (the file name extension may be different on your
platform). Now starting R yields
R version 2.14.1 Patched (2012-01-16 r58124)
Copyright (C) 2012 The R Foundation for Statistical Computing
...
Type "q()" to quit R.
#ifdef _WIN32
// gfortran I/O initialization sets these to _O_BINARY
setmode(1, _O_TEXT); /* stdout */
setmode(2, _O_TEXT); /* stderr */
#endif
}
in the file used for native symbol registration.)
5.8.1 Unix-alikes
It is possible to link a shared object in package packA to a library provided by package packB
under limited circumstances on a Unix-alike OS. There are severe portability issues, so this is
not recommended for a distributed package.
This is easiest if packB provides a static library packB/lib/libpackB.a. (Note using di-
rectory lib rather than libs is conventional, and architecture-specific sub-directories may be
needed and are assumed in the sample code below. The code in the static library will need to be
compiled with PIC flags on platforms where it matters.) Then as the code from package packB
is incorporated when package packA is installed, we only need to find the static library at install
time for package packA. The only issue is to find package packB, and for that we can ask R by
something like (long lines broken for display here)
Chapter 5: System and foreign language interfaces 142
PKGB_PATH=`echo 'library(packB);
cat(system.file("lib", package="packB", mustWork=TRUE))' \
| "${R_HOME}/bin/R" --vanilla --no-echo`
PKG_LIBS="$(PKGB_PATH)$(R_ARCH)/libpackB.a"
For a dynamic library packB/lib/libpackB.so (packB/lib/libpackB.dylib on macOS:
note that you cannot link to a shared object, .so, on that platform) we could use
PKGB_PATH=`echo 'library(packB);
cat(system.file("lib", package="packB", mustWork=TRUE))' \
| "${R_HOME}/bin/R" --vanilla --no-echo`
PKG_LIBS=-L"$(PKGB_PATH)$(R_ARCH)" -lpackB
This will work for installation, but very likely not when package packB is loaded, as the path
to package packB’s lib directory is not in the ld.so14 search path. You can arrange to put it
there before R is launched by setting (on some platforms) LD_RUN_PATH or LD_LIBRARY_PATH
or adding to the ld.so cache (see man ldconfig). On platforms that support it, the path to
the directory containing the dynamic library can be hardcoded at install time (which assumes
that the location of package packB will not be changed nor the package updated to a changed
API). On systems with the gcc or clang and the GNU linker (e.g. Linux) and some others this
can be done by e.g.
PKGB_PATH=`echo 'library(packB);
cat(system.file("lib", package="packB", mustWork=TRUE)))' \
| "${R_HOME}/bin/R" --vanilla --no-echo`
PKG_LIBS=-L"$(PKGB_PATH)$(R_ARCH)" -Wl,-rpath,"$(PKGB_PATH)$(R_ARCH)" -lpackB
Some other systems (e.g. Solaris with its native linker) use -Rdir rather than -rpath,dir (and
this is accepted by the compiler as well as the linker).
It may be possible to figure out what is required semi-automatically from the result of R CMD
libtool --config (look for ‘hardcode’).
Making headers provided by package packB available to the code to be compiled in package
packA can be done by the LinkingTo mechanism (see Section 5.4 [Registering native routines],
page 130).
5.8.2 Windows
Suppose package packA wants to make use of compiled code provided by packB in DLL
packB/libs/exB.dll, possibly the package’s DLL packB/libs/packB.dll. (This can be ex-
tended to linking to more than one package in a similar way.) There are three issues to be
addressed:
• Making headers provided by package packB available to the code to be compiled in package
packA.
This is done by the LinkingTo mechanism (see Section 5.4 [Registering native routines],
page 130).
• preparing packA.dll to link to packB/libs/exB.dll.
This needs an entry in Makevars.win or Makevars.ucrt of the form
PKG_LIBS= -L<something> -lexB
and one possibility is that <something> is the path to the installed pkgB/libs directory.
To find that we need to ask R where it is by something like
PKGB_PATH=`echo 'library(packB);
cat(system.file("libs", package="packB", mustWork=TRUE))' \
| rterm --vanilla --no-echo`
14
dyld on macOS, and DYLD_LIBRARY_PATHS below.
Chapter 5: System and foreign language interfaces 143
before: libexB.dll.a
libexB.dll.a: exB.def
and then installing package packA will make and use the import library for exB.dll. (One
way to prepare the exports file is to use pexports.exe.)
• loading packA.dll which depends on exB.dll.
If exB.dll was used by package packB (because it is in fact packB.dll or packB.dll
depends on it) and packB has been loaded before packA, then nothing more needs to be
done as exB.dll will already be loaded into the R executable. (This is the most common
scenario.)
More generally, we can use the DLLpath argument to library.dynam to ensure that exB.dll
is found, for example by setting
library.dynam("packA", pkg, lib,
DLLpath = system.file("libs", package="packB"))
Note that DLLpath can only set one path, and so for linking to two or more packages you
would need to resort to setting environment variable PATH.
In each case the R objects are available for manipulation via a set of functions and macros
defined in the header file Rinternals.h or some S-compatibility macros15 See Section 5.10
[Interface functions .Call and .External], page 156, for details on .Call and .External.
Before you decide to use .Call or .External, you should look at other alternatives. First,
consider working in interpreted R code; if this is fast enough, this is normally the best option.
You should also see if using .C is enough. If the task to be performed in C is simple enough
involving only atomic vectors and requiring no call to R, .C suffices. A great deal of useful
code was written using just .C before .Call and .External were available. These interfaces
allow much more control, but they also impose much greater responsibilities so need to be used
with care. Neither .Call nor .External copy their arguments: you should treat arguments you
receive through these interfaces as read-only.
To handle R objects from within C code we use the macros and functions that have been
used to implement the core parts of R. A public16 subset of these is defined in the header
file Rinternals.h in the directory R_INCLUDE_DIR (default R_HOME/include) that should be
available on any R installation.
A substantial amount of R, including the standard packages, is implemented using the func-
tions and macros described here, so the R source code provides a rich source of examples and
“how to do it”: do make use of the source code for inspirational examples.
It is necessary to know something about how R objects are handled in C code. All the R
objects you will deal with will be handled with the type SEXP 17 , which is a pointer to a structure
with typedef SEXPREC. Think of this structure as a variant type that can handle all the usual
types of R objects, that is vectors of various modes, functions, environments, language objects
and so on. The details are given later in this section and in Section “R Internal Structures” in
R Internals, but for most purposes the programmer does not need to know them. Think rather
of a model such as that used by Visual Basic, in which R objects are handed around in C code
(as they are in interpreted R code) as the variant type, and the appropriate part is extracted
for, for example, numerical calculations, only when it is needed. As in interpreted R code, much
use is made of coercion to force the variant object to the right type.
to unprotect when they are no longer needed. The protection mechanism is stack-based, so
UNPROTECT(n) unprotects the last n objects which were protected. The calls to PROTECT and
UNPROTECT must balance when the user’s code returns and should balance in all functions. R
will warn about "stack imbalance in .Call" (or .External) if the housekeeping is wrong.
Here is a small example of creating an R numeric vector in C code:
#include <R.h>
#include <Rinternals.h>
SEXP ab;
....
ab = PROTECT(RF_allocVector(REALSXP, 2));
REAL(ab)[0] = 123.45;
REAL(ab)[1] = 67.89;
UNPROTECT(1);
Now, the reader may ask how the R object could possibly get removed during those manipu-
lations, as it is just our C code that is running. As it happens, we can do without the protection
in this example, but in general we do not know (nor want to know) what is hiding behind the
R macros and functions we use, and any of them might cause memory to be allocated, hence
garbage collection and hence our object ab to be removed. It is usually wise to err on the side
of caution and assume that any of the R macros and functions might remove the object.
In some cases it is necessary to keep better track of whether protection is really needed. Be
particularly aware of situations where a large number of objects are generated. The pointer
protection stack has a fixed size (default 10,000) and can become full. It is not a good idea
then to just PROTECT everything in sight and UNPROTECT several thousand objects at the end. It
will almost invariably be possible to either assign the objects as part of another object (which
automatically protects them) or unprotect them immediately after use.
There is a less-used macro UNPROTECT_PTR(s) that unprotects the object pointed to by the
SEXP s, even if it is not the top item on the pointer protection stack. This macro was introduced
for use in the parser, where the code interfacing with the R heap is generated and the generator
cannot be configured to insert proper calls to PROTECT and UNPROTECT. However, UNPROTECT_PTR
is dangerous to use in combination with UNPROTECT when the same object has been protected
multiple times. It has been superseded by multi-set based functions R_PreserveInMSet and
R_ReleaseFromMSet, which protect objects in a multi-set created by R_NewPreciousMSet and
typically itself protected using PROTECT. These functions should not be needed outside parsers.
Sometimes an object is changed (for example duplicated, coerced or grown) yet the current
value needs to be protected. For these cases PROTECT_WITH_INDEX saves an index of the pro-
tection location that can be used to replace the protected value using REPROTECT. For example
(from the internal code for optim)
PROTECT_INDEX ipx;
....
PROTECT_WITH_INDEX(s = Rf_eval(OS->R_fcall, OS->R_env), &ipx);
REPROTECT(s = Rf_coerceVector(s, REALSXP), ipx);
Note that it is dangerous to mix UNPROTECT_PTR also with PROTECT_WITH_INDEX, as the
former changes the protection locations of objects that were protected after the one being un-
protected.
There is another way to avoid the effects of garbage collection: a call to R_PreserveObject
adds an object to an internal list of objects not to be collected, and a subsequent call to R_
ReleaseObject removes it from that list. This provides a way for objects which are not returned
Chapter 5: System and foreign language interfaces 146
as part of R objects to be protected across calls to compiled code: on the other hand it becomes
the user’s responsibility to release them when they are no longer needed (and this often requires
the use of a finalizer). It is less efficient than the normal protection mechanism, and should be
used sparingly.
For functions from packages as well as R to safely co-operate in protecting objects, certain
rules have to be followed:
• Pointer-protection balance. Calls to PROTECT and UNPROTECT should balance in each func-
tion. A function may only call UNPROTECT or REPROTECT on objects it has itself protected.
Note that the pointer protection stack balance is restored automatically on non-local trans-
fer of control (See Section 6.12 [Condition handling and cleanup code], page 190.), as if a
call to UNPROTECT was invoked with the right argument.
• Caller protection. It is the responsibility of the caller that all arguments passed to a function
are protected and will stay protected for the whole execution of the callee. Typically this
is achieved by PROTECT and UNPROTECT calls.
• Protecting return values. Any R objects returned from a function are unprotected (the callee
must maintain pointer-protection balance), and hence should be protected immediately by
the caller. To be safe against future code changes, assume that any R object returned from
any function may need protection. Note that even when conceptually returning an existing
protected object, that object may be duplicated.
• All functions/macros allocate. To be safe against future code changes, assume that any
function or macro may allocate and hence garbage collector may run and destroy unpro-
tected objects.
It is always safe and recommended to follow those rules. In fact, several R functions and
macros protect their own arguments and some functions do not allocate or do not allocate when
used in a certain way, but that is subject to change, so relying on that may be fragile. PROTECT
and PROTECT_WITH_INDEX can be safely called with unprotected arguments and UNPROTECT does
not allocate.
18
If no coercion was required, Rf_coerceVector would have passed the old object through unchanged.
Chapter 5: System and foreign language interfaces 148
5.9.4 Attributes
Many R objects have attributes: some of the most useful are classes and the dim and dimnames
that mark objects as matrices or arrays. It can also be helpful to work with the names attribute
of vectors.
To illustrate this, let us write code to take the outer product of two vectors (which outer
and %o% already do). As usual the R code is simple
where we expect x and y to be numeric vectors (possibly integer), possibly with names. This
time we do the coercion in the calling R code.
#include <R.h>
#include <Rinternals.h>
Note the way REAL is used: as it is a function call it can be considerably faster to store the result
and index that.
However, we would like to set the dimnames of the result. We can use
#include <R.h>
#include <Rinternals.h>
Chapter 5: System and foreign language interfaces 149
UNPROTECT(2);
return ans;
}
This example introduces several new features. The Rf_getAttrib and Rf_setAttrib func-
tions get and set individual attributes. Their second argument is a SEXP defining the name in
the symbol table of the attribute we want; these and many such symbols are defined in the
header file Rinternals.h.
There are shortcuts here too: the functions Rf_namesgets, Rf_dimgets and Rf_
dimnamesgets are the internal versions of the default methods of names<-, dim<- and
dimnames<- (for vectors and arrays), and there are functions such as Rf_GetColNames,
Rf_GetRowNames, Rf_GetMatrixDimnames and Rf_GetArrayDimnames.
What happens if we want to add an attribute that is not pre-defined? We need to add a
symbol for it via a call to Rf_install. Suppose for illustration we wanted to add an attribute
"version" with value 3.0. We could use
SEXP version;
version = PROTECT(Rf_allocVector(REALSXP, 1));
REAL(version)[0] = 3.0;
Rf_setAttrib(ans, Rf_install("version"), version);
UNPROTECT(1);
Using Rf_install when it is not needed is harmless and provides a simple way to retrieve the
symbol from the symbol table if it is already installed. However, the lookup takes a non-trivial
amount of time, so consider code such as
static SEXP VerSymbol = NULL;
...
if (VerSymbol == NULL) VerSymbol = Rf_install("version");
if it is to be done frequently.
This example can be simplified by another convenience function:
SEXP version = PROTECT(Rf_ScalarReal(3.0));
Rf_setAttrib(ans, Rf_install("version"), version);
UNPROTECT(1);
If a result is to be a vector with all elements named, then Rf_mkNamed can be used to allocate
a vector of a specified type. Names are provided as a C vector of strings terminated by an empty
string:
Chapter 5: System and foreign language interfaces 150
5.9.5 Classes
In R the class is just the attribute named "class" so it can be handled as such, but there is
a shortcut Rf_classgets. Suppose we want to give the return value in our example the class
"mat". We can use
#include <R.h>
#include <Rinternals.h>
....
SEXP ans, dim, dimnames, class;
....
class = PROTECT(Rf_allocVector(STRSXP, 1));
SET_STRING_ELT(class, 0, Rf_mkChar("mat"));
Rf_classgets(ans, class);
UNPROTECT(4);
return ans;
}
As the value is a character vector, we have to know how to create that from a C character array,
which we do using the function Rf_mkChar.
5.9.6 S4 objects
Several functions are available for working with S4 objects and classes in C, including:
SEXP Rf_allocS4Object(void);
SEXP Rf_asS4(SEXP, Rboolean, int);
int R_check_class_etc(SEXP x, const char **valid);
SEXP R_do_MAKE_CLASS(const char *what);
SEXP R_do_new_object(SEXP class_def);
SEXP R_do_slot(SEXP obj, SEXP name);
SEXP R_do_slot_assign(SEXP obj, SEXP name, SEXP value);
SEXP R_getClassDef (const char *what);
int R_has_slot(SEXP obj, SEXP name);
if (!Rf_isString(name) || Rf_length(name) != 1)
Rf_error("name is not a single string");
if (!Rf_isEnvironment(rho))
Rf_error("rho should be an environment");
ans = R_getVar(Rf_installChar(STRING_ELT(name, 0)), rho, TRUE);
if (TYPEOF(ans) != REALSXP || Rf_length(ans) == 0)
Rf_error("value is not a numeric vector with at least one element");
Rprintf("first value is %f\n", REAL(ans)[0]);
return R_NilValue;
}
The main work is done by R_getVar, but to use it we need to install name as a name in the
symbol table. As we wanted the value for internal use, we return NULL.
R_getVar is similar to the R function get. It signals an error if there is no binding for the
variable in the environment. R_getVarEx can be used to return a default value if no binding
is found; this corresponds to the R function get0. The third argument to R_getVar and R_
getVarEx corresponds to the inherits argument to the R function get.
Functions with syntax
void Rf_defineVar(SEXP symbol, SEXP value, SEXP rho)
void Rf_setVar(SEXP symbol, SEXP value, SEXP rho)
can be used to assign values to R variables. Rf_defineVar creates a new binding or changes
the value of an existing binding in the specified environment frame; it is the analogue of
assign(symbol, value, envir = rho, inherits = FALSE), but unlike assign, Rf_defineVar
does not make a copy of the object value.19 Rf_setVar searches for an existing binding for
symbol in rho or its enclosing environments. If a binding is found, its value is changed to value.
Otherwise, a new binding with the specified value is created in the global environment. This
corresponds to assign(symbol, value, envir = rho, inherits = TRUE).
At times it may also be useful to create a new environment frame in C code. R_NewEnv is a
C version of the R function new.env:
SEXP R_NewEnv(SEXP enclos, int hash, int size)
Rf_asComplex. The function Rf_asChar returns a CHARSXP. All of these functions ignore any
elements of an input vector after the first.
double x;
...
return Rf_ScalarReal(x);
and there are versions of this for all the atomic vector types (those for a length-one character
vector being Rf_ScalarString with argument a CHARSXP and Rf_mkString with argument
const char *).
SEXP Rf_ScalarReal(double);
SEXP Rf_ScalarInteger(int);
SEXP Rf_ScalarLogical(int)
SEXP Rf_ScalarRaw(Rbyte);
SEXP Rf_ScalarComplex(Rcomplex);
SEXP Rf_ScalarString(SEXP);
SEXP Rf_mkString(const char *);
Some of the Rf_isXXXX functions differ from their apparent R-level counterparts: for example
Rf_isVector is true for any atomic vector type (Rf_isVectorAtomic) and for lists and expres-
sions (Rf_isVectorList) (with no check on attributes). Rf_isMatrix is a test of a length-2
"dim" attribute.
Rboolean Rf_isVector(SEXP);
Rboolean Rf_isVectorAtomic(SEXP);
Rboolean Rf_isVectorList(SEXP);
Rboolean Rf_isMatrix(SEXP);
Rboolean Rf_isPairList(SEXP);
Rboolean Rf_isPrimitive(SEXP);
Rboolean Rf_isTs(SEXP);
Rboolean Rf_isNumeric(SEXP);
Rboolean Rf_isArray(SEXP);
Rboolean Rf_isFactor(SEXP);
Rboolean Rf_isObject(SEXP);
Rboolean Rf_isFunction(SEXP);
Rboolean Rf_isLanguage(SEXP);
Rboolean Rf_isNewList(SEXP);
Rboolean Rf_isList(SEXP);
Rboolean Rf_isOrdered(SEXP);
Rboolean Rf_isUnordered(SEXP);
Rboolean Rf_isS4(SEXP);
Rboolean Rf_isNumber(SEXP);
Rboolean Rf_isDataFrame (SEXP);
>= 2 The object has potentially been bound to two or more symbols, and one should
act as if another variable is currently bound to this value. The maximal value is
NAMEDMAX.
Note the past tenses: R does not do currently do full reference counting and there may currently
be fewer bindings.
It is safe to modify the value of any SEXP for which NAMED(foo) is zero, and if NAMED(foo) is
two or more, the value should be duplicated (via a call to Rf_duplicate) before any modification.
Note that it is the responsibility of the author of the code making the modification to do the
duplication, even if it is x whose value is being modified after y <- x.
The case NAMED(foo) == 1 allows some optimization, but it can be ignored (and duplication
done whenever NAMED(foo) > 0). (This optimization is not currently usable in user code.) It is
intended for use within replacement functions. Suppose we used
x <- 1:10
foo(x) <- 3
which is computed as
x <- 1:10
x <- "foo<-"(x, 3)
Then inside "foo<-" the object pointing to the current value of x will have NAMED(foo) as one,
and it would be safe to modify it as the only symbol bound to it is x and that will be rebound
immediately. (Provided the remaining code in "foo<-" make no reference to x, and no one is
going to attempt a direct call such as y <- "foo<-"(x).)
This mechanism was replaced in R 4.0.0. To support future changes, package code should
use NO_REFERENCES, MAYBE_REFERENCED, NOT_SHARED, MAYBE_SHARED, and MARK_NOT_MUTABLE.
Chapter 5: System and foreign language interfaces 156
These two interfaces have almost the same functionality. .Call is based on the interface of
the same name in S version 4, and .External is based on R’s .Internal. .External is more
complex but allows a variable number of arguments.
which could hardly be simpler, but as we shall see all the type coercion is transferred to the C
code, which is
#include <R.h>
#include <Rinternals.h>
a = PROTECT(Rf_coerceVector(a, REALSXP));
b = PROTECT(Rf_coerceVector(b, REALSXP));
na = Rf_length(a); nb = Rf_length(b); nab = na + nb - 1;
ab = PROTECT(Rf_allocVector(REALSXP, nab));
xa = REAL(a); xb = REAL(b); xab = REAL(ab);
for(int i = 0; i < nab; i++) xab[i] = 0.0;
for(int i = 0; i < na; i++)
for(int j = 0; j < nb; j++) xab[i + j] += xa[i] * xb[j];
UNPROTECT(3);
return ab;
}
but the main change is how the arguments are passed to the C code, this time as a single SEXP.
The only change to the C code is how we handle the arguments.
Chapter 5: System and foreign language interfaces 157
#include <R.h>
#include <Rinternals.h>
a = PROTECT(Rf_coerceVector(CADR(args), REALSXP));
b = PROTECT(Rf_coerceVector(CADDR(args), REALSXP));
...
}
Once again we do not need to protect the arguments, as in the R side of the interface they are
objects that are already in use. The macros
first = CADR(args);
second = CADDR(args);
third = CADDDR(args);
fourth = CAD4R(args);
fifth = CAD5R(args);
provide convenient ways to access the first five arguments. More generally we can use the CDR
and CAR macros as in
args = CDR(args); a = CAR(args);
args = CDR(args); b = CAR(args);
which clearly allows us to extract an unlimited number of arguments (whereas .Call has a limit,
albeit at 65 not a small one).
More usefully, the .External interface provides an easy way to handle calls with a variable
number of arguments, as length(args) will give the number of arguments supplied (of which
the first is ignored). We may need to know the names (‘tags’) given to the actual arguments,
which we can by using the TAG macro and using something like the following example, that
prints the names and the first value of its arguments if they are vector types.
SEXP showArgs(SEXP args)
{
void *vmax = vmaxget();
args = CDR(args); /* skip 'name' */
for(int i = 0; args != R_NilValue; i++, args = CDR(args)) {
const char *name =
Rf_isNull(TAG(args)) ? "" : Rf_translateChar(PRINTNAME(TAG(args)));
SEXP el = CAR(args);
if (length(el) == 0) {
Rprintf("[%d] '%s' R type, length 0\n", i+1, name);
continue;
}
switch(TYPEOF(el)) {
case REALSXP:
Rprintf("[%d] '%s' %f\n", i+1, name, REAL(el)[0]);
break;
case LGLSXP:
case INTSXP:
Rprintf("[%d] '%s' %d\n", i+1, name, INTEGER(el)[0]);
break;
Chapter 5: System and foreign language interfaces 158
case CPLXSXP:
{
Rcomplex cpl = COMPLEX(el)[0];
Rprintf("[%d] '%s' %f + %fi\n", i+1, name, cpl.r, cpl.i);
}
break;
case STRSXP:
Rprintf("[%d] '%s' %s\n", i+1, name,
Rf_translateChar(STRING_ELT(el, 0)));
break;
default:
Rprintf("[%d] '%s' R type\n", i+1, name);
}
}
vmaxset(vmax);
return R_NilValue;
}
This can be called by the wrapper function
showArgs <- function(...) invisible(.External("showArgs", ...))
Note that this style of programming is convenient but not necessary, as an alternative style is
showArgs1 <- function(...) invisible(.Call("showArgs1", list(...)))
The (very similar) C code is in the scripts.
Additional functions for accessing pairlist components are CAAR, CDAR, CDDR, and CDDDR.
These components can be modified with SETCAR, SETCDR, SETCADR, SETCADDR, SETCADDDR, and
SETCAD4R.
Function Rf_lang2 creates an executable pairlist of two elements, but this will only be clear to
those with a knowledge of a LISP-like language.
SEXP s, t;
t = s = PROTECT(RF_allocLang(3));
SETCAR(t, Rf_install("print")); t = CDR(t);
SETCAR(t, CAR(a)); t = CDR(t);
SETCAR(t, Rf_ScalarInteger(digits));
SET_TAG(t, Rf_install("digits"));
Rf_eval(s, env);
UNPROTECT(1);
The function Rf_allocLang is available as of R 4.4.1; for older versions replace Rf_
allocLang(3) with
LCONS(R_NilValue, Rf_allocList(2))
At this point CAR(a) is the R object to be printed, the current attribute. There are three steps:
the call is constructed as a pairlist of length 3, the list is filled in, and the expression represented
by the pairlist is evaluated.
A pairlist is quite distinct from a generic vector list, the only user-visible form of list in R. A
pairlist is a linked list (with CDR(t) computing the next entry), with items (accessed by CAR(t))
and names or tags (set by SET_TAG). In this call there are to be three items, a symbol (pointing
to the function to be called) and two argument values, the first unnamed and the second named.
Setting the type to LANGSXP makes this a call which can be evaluated.
Customarily, the evaluation environment is passed from the calling R code (see rho above). In
special cases it is possible that the C code may need to obtain the current evaluation environment
which can be done via R_GetCurrentEnv() function.
5.11.1 Zero-finding
In this section we re-work the example of Becker, Chambers & Wilks (1988, pp.~205–10) on
finding a zero of a univariate function. The R code and an example are
where this time we do the coercion and error-checking in the R code. The C code is
Chapter 5: System and foreign language interfaces 161
SEXP mkans(double x)
{
// no need for PROTECT() here, as REAL(.) does not allocate:
SEXP ans = Rf_allocVector(REALSXP, 1);
REAL(ans)[0] = x;
return ans;
}
for(;;) {
xc = 0.5*(x0+x1);
if(fabs(x0-x1) < tol) return mkans(xc);
fc = feval(xc, f, rho);
if(fc == 0) return mkans(xc);
if(f0*fc > 0.0) {
x0 = xc; f0 = fc;
} else {
x1 = xc; f1 = fc;
}
}
}
expr = CADR(args);
if(!Rf_isString(theta = CADDR(args)))
Rf_error("theta should be of type character");
if(!Rf_isEnvironment(rho = CADDDR(args)))
Rf_error("rho should be an environment");
environment rho) by delta and evaluate expr in environment rho again. Because we are directly
dealing with original R memory locations here, R does the evaluation for the changed parameter
value.
for(int j = 0; j < LENGTH(ans); j++)
rgr[j + start] = (REAL(ans1)[j] - rans[j])/delta;
REAL(par)[0] = tt;
UNPROTECT(2);
}
Now, we compute the i-th column of the gradient matrix. Note how it is accessed: R stores
matrices by column (like Fortran).
dimnames = PROTECT(Rf_allocVector(VECSXP, 2));
SET_VECTOR_ELT(dimnames, 1, theta);
Rf_dimnamesgets(gradient, dimnames);
Rf_setAttrib(ans, install("gradient"), gradient);
UNPROTECT(3);
return ans;
}
First we add column names to the gradient matrix. This is done by allocating a list (a VECSXP)
whose first element, the row names, is NULL (the default) and the second element, the col-
umn names, is set as theta. This list is then assigned as the attribute having the symbol
R_DimNamesSymbol. Finally we set the gradient matrix as the gradient attribute of ans, unpro-
tect the remaining protected locations and return the answer ans.
20
This is only guaranteed to show the current interface: it is liable to change.
Chapter 5: System and foreign language interfaces 165
#include <R.h>
#include <Rinternals.h>
#include <R_ext/Parse.h>
SEXP menu_ttest3()
{
char cmd[256];
SEXP cmdSexp, cmdexpr, ans = R_NilValue;
ParseStatus status;
...
if(done == 1) {
cmdSexp = PROTECT(Rf_allocVector(STRSXP, 1));
SET_STRING_ELT(cmdSexp, 0, Rf_mkChar(cmd));
cmdexpr = PROTECT(R_ParseVector(cmdSexp, -1, &status, R_NilValue));
if (status != PARSE_OK) {
UNPROTECT(2);
Rf_error("invalid call %s", cmd);
}
/* Loop is needed here as EXPSEXP will be of length > 1 */
for(int i = 0; i < Rf_length(cmdexpr); i++)
ans = Rf_eval(VECTOR_ELT(cmdexpr, i), R_GlobalEnv);
UNPROTECT(2);
}
return ans;
}
Note that a single line of text may give rise to more than one R expression.
R_ParseVector is essentially the code used to implement parse(text=) at R level. The first
argument is a character vector (corresponding to text) and the second the maximal number
of expressions to parse (corresponding to n). The third argument is a pointer to a variable of
an enumeration type, and it is normal (as parse does) to regard all values other than PARSE_
OK as an error. Other values which might be returned are PARSE_INCOMPLETE (an incomplete
expression was found) and PARSE_ERROR (a syntax error), in both cases the value returned being
R_NilValue. The fourth argument is a length one character vector to be used as a filename in
error messages, a srcfile object or the R NULL object (as in the example above). If a srcfile
object was used, a srcref attribute would be attached to the result, containing a list of srcref
objects of the same length as the expression, to allow it to be echoed with its original formatting.
Two higher-level alternatives are R_ParseString and R_ParseEvalString:
This function checks the current evaluation stack for entries that contain source reference
information. There are two modes of operation. If skip == NA_INTEGER, the R_Srcref entry
is checked followed by entries in the call stack, until a srcref is found. Otherwise, the skip
argument tells how many calls to skip (counting from the top of the stack) before returning the
SEXP of the call’s srcref object or NULL if that call did not have one. If skip < 0, abs(skip)
locations are counted up from the bottom of the stack. If too few or no source references are
found, NULL is returned.
SEXP R_GetSrcFilename(SEXP srcref);
This function extracts the filename from the source reference for display, returning a length
1 character vector containing the filename. If no name is found, "" is returned.
5.13.1 An example
Package RODBC (https://CRAN.R-project.org/package=RODBC) uses external pointers to
maintain its channels, connections to databases. There can be several connections open at once,
and the status information for each is stored in a C structure (pointed to by thisHandle in the
code extract below) that is returned via an external pointer as part of the RODBC ‘channel’
(as the "handle_ptr" attribute). The external pointer is created by
SEXP ans, ptr;
ans = PROTECT(Rf_allocVector(INTSXP, 1));
ptr = R_MakeExternalPtr(thisHandle, Rf_install("RODBC_channel"), R_NilValue);
PROTECT(ptr);
R_RegisterCFinalizerEx(ptr, chanFinalizer, TRUE);
...
/* return the channel no */
INTEGER(ans)[0] = nChannels;
/* and the connection string as an attribute */
Chapter 5: System and foreign language interfaces 168
Both Rf_translateChar and Rf_translateCharUTF8 will translate any input, using escapes
such as ‘<A9>’ and ‘<U+0093>’ to represent untranslatable parts of the input.
There is a public interface to the encoding marked on CHARSXPs via
typedef enum {CE_NATIVE, CE_UTF8, CE_LATIN1, CE_BYTES, CE_SYMBOL, CE_ANY} cetype_t;
cetype_t Rf_getCharCE(SEXP);
SEXP Rf_mkCharCE(const char *, cetype_t);
Only CE_UTF8 and CE_LATIN1 are marked on CHARSXPs (and so Rf_getCharCE will only return
one of the first three), and these should only be used on non-ASCII strings. Value CE_BYTES is
used to make CHARSXPs which should be regarded as a set of bytes and not translated. Value CE_
SYMBOL is used internally to indicate Adobe Symbol encoding. Value CE_ANY is used to indicate
a character string that will not need re-encoding – this is used for character strings known to
be in ASCII, and can also be used as an input parameter where the intention is that the string
is treated as a series of bytes. (See the comments under Rf_mkChar about the length of input
allowed.)
Function
Rboolean Rf_charIsASCII(SEXP);
can be used to detect whether a given CHARSXP represents an ASCII string. The implementation
is equivalent to checking individual characters, but may be faster.
Function
Rboolean Rf_charIsUTF8(SEXP);
can be used to detect whether the internal representation of a given CHARSXP accessed via CHAR
is UTF-8 (including ASCII). This function is rarely needed and specifically is not needed with
Rf_translateCharUTF8, because such check is already included. However, when needed, it
is better to use it in preference of Rf_getCharCE, as it is safer against future changes in the
semantics of encoding marks and covers strings internally represented in the native encoding.
Note that Rf_charIsUTF8() is not equivalent to getCharCE() == CE_UTF8.
Similarly, function
Rboolean Rf_charIsLatin1(SEXP);
can be used to detect whether the internal representation of a given CHARSXP accessed via CHAR
is latin1 (including ASCII). It is not equivalent to Rf_getCharCE() == CE_LATIN1.
Function
const char *Rf_reEnc(const char *x, cetype_t ce_in, cetype_t ce_out,
int subst);
can be used to re-encode character strings: like Rf_translateChar it returns a string allocated
by R_alloc. This can translate from CE_SYMBOL to CE_UTF8, but not conversely. Argument
subst controls what to do with untranslatable characters or invalid input: this is done byte-
by-byte with 1 indicates to output hex of the form <a0>, and 2 to replace by ., with any other
value causing the byte to produce no output.
There is also
SEXP Rf_mkCharLenCE(const char *, int, cetype_t);
to create marked character strings of a given length.
If a data pointer is not available, then code can access elements one at a time with functions
like REAL_ELT. This is often sufficient, but in some cases can be inefficient. An alternative is
to request data for contiguous blocks of elements. For a good choice of block size this can be
nearly as efficient as direct pointer access.
experimental
Entry points declared in an installed header file that are part of an experimental
API, such as R_ext/Altrep.h. These are subject to change, so package authors
wishing to use these should be prepared to adapt. See [Experimental API index],
page 226.
embedding Entry points intended primarily for embedding and creating new front-ends. It is
not clear that this needs to be a separate category but it may be useful to keep it
separate for now. See [Embedding API index], page 227.
If you would like to use an entry point or variable that is not identified as part of the API in
this document, or is currently hidden, you can make a request for it to be made available. Entry
points or variables not identified as in the API may be changed or removed with no notice as
part of efforts to improve aspects of R.
Work in progress: Currently Entry points in the API are identified in the source for this
document with @apifun, @eapifun, and @embfun entries. Similarly, @apivar, @eapivar, and
@embvar identify variables, and @apihdr, @eapihdr, and @embhdr identify headers in the API.
@forfun identifies entry points to be called as Fortran subroutines. This could be used for
programmatic extraction, but the specific format is work in progress and even the way this
document is produced is subject to change.
The memory returned is only guaranteed to be aligned as required for double pointers: take
precautions if casting to a pointer which needs more. There is also
long double *R_allocLD(size_t n)
which is guaranteed to have the 16-byte alignment needed for long double pointers on some
platforms.
These functions should only be used in code called by .C etc, never from front-ends. They
are not thread-safe.
These have the same call sequences as calls to printf, but in the simplest case can be called
with a single character string argument giving the error message. (Don’t do this if the string
contains ‘%’ or might otherwise be interpreted as a format.)
These are defined in header R_ext/Error.h included by R.h. NB: when R_NO_REMAP is
defined (as is done for C++ code), Rf_error etc must be used.
Header R_ext/Error.h defines a macro NORET intended to be used only from C code (C++
code can use the [[noreturn]] attribute). This covers various ways to signal to the compiler
that the function never returns. Because the usages of those ways differ by C standard, it
should always be used at the beginning of a function declaration, including before static and
attributes such as attribute_hidden.
void F77_SUB(getRNGseed)(void) {
GetRNGstate();
}
void F77_SUB(putRNGseed)(void) {
Chapter 6: The R API: entry points for C code 175
PutRNGstate();
}
double F77_SUB(unifRand)(void) {
return(unif_rand());
}
called from Fortran code like
...
double precision X
call getRNGseed()
X = unifRand()
...
call putRNGseed()
Alternatively one could use Fortran 2003’s iso_c_binding module by something like (fixed-
form Fortran 90 code):
module rngfuncs
use iso_c_binding
interface
double precision
* function unifRand() bind(C, name = "unif_rand")
end function unifRand
subroutine testit
use rngfuncs
double precision X
call getRNGseed()
X = unifRand()
print *, X
call putRNGSeed()
end subroutine testit
You can check for Inf or -Inf by testing equality to R_PosInf or R_NegInf, and set (but
not test) an NA as NA_REAL.
All of the above apply to double variables only. For integer variables there is a variable
accessed by the macro NA_INTEGER which can used to set or test for missingness.
These are defined in header R_ext/Arith.h included by R.h.
6.5 Printing
The most useful function for printing from a C routine compiled into R is Rprintf. This is used
in exactly the same way as printf, but is guaranteed to write to R’s output (which might be
a GUI console rather than a file, and can be re-directed by sink). It is wise to write complete
lines (including the "\n") before returning to R. It is defined in R_ext/Print.h.
The function REprintf is similar but writes on the error stream (stderr) which may or may
not be different from the standard output stream.
Functions Rvprintf and REvprintf are analogues using the vprintf interface. Because
that is a C993 interface, they are only defined by R_ext/Print.h in C++ code if the macro
R_USE_C99_IN_CXX is defined before it is included or (as from R 4.0.0) a C++11 compiler is
used.
Another circumstance when it may be important to use these functions is when using parallel
computation on a cluster of computational nodes, as their output will be re-directed/logged
appropriately.
3
also part of C++11.
Chapter 6: The R API: entry points for C code 177
#ifdef FC_LEN_T
void F77_NAME(rmsg)(char *msg, FC_LEN_T msg_len)
{
char cmsg[msg_len+1];
strncpy(cmsg, msg, msg_len);
cmsg[msg_len] = '\0';
// do something with 'cmsg'
Chapter 6: The R API: entry points for C code 179
}
#else
void F77_NAME(rmsg)(char *msg)
{
// do something with 'msg'
}
#endif
(USE_FC_LEN_T is the default as from R 4.3.0.)
An alternative is to use Fortran 2003 features to set up the Fortran routine to pass a C-
compatible character string. We could use something like
module cfuncs
use iso_c_binding, only: c_char, c_null_char
interface
subroutine cmsg(msg) bind(C, name = 'cmsg')
use iso_c_binding, only: c_char
character(kind = c_char):: msg(*)
end subroutine cmsg
end interface
end module
subroutine rmsg(msg)
use cfuncs
character(*) msg
call cmsg(msg//c_null_char) ! need to concatenate a nul terminator
end subroutine rmsg
where the C side is simply
void cmsg(const char *msg)
{
// do something with nul-terminated string 'msg'
}
If you use bind to a C function as here, the only way to check that the bound definition is correct
is to compile the package with LTO (which requires compatible C and Fortran compilers, usually
gcc and gfortran).
Passing a variable-length string from C to Fortran is trickier, but https://www.intel.
com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2023-0/
bind-c.html provides a recipe. However, all the uses in BLAS and LAPACK are of a single
character, and for these we can write a wrapper in Fortran along the lines of
subroutine c_dgemm(transa, transb, m, n, k, alpha,
+ a, lda, b, ldb, beta, c, ldc)
+ bind(C, name = 'Cdgemm')
use iso_c_binding, only : c_char, c_int, c_double
character(c_char), intent(in) :: transa, transb
integer(c_int), intent(in) :: m, n, k, lda, ldb, ldc
real(c_double), intent(in) :: alpha, beta, a(lda, *), b(ldb, *)
real(c_double), intent(out) :: c(ldc, *)
call dgemm(transa, transb, m, n, k, alpha,
+ a, lda, b, ldb, beta, c, ldc)
end subroutine c_dgemm
which is then called from C with declaration
void
Chapter 6: The R API: entry points for C code 180
F77_CALL(lmdif)(&fcn_lmdif, ...
This works on most platforms but depends on the C and Fortran compilers agreeing on calling
conventions: this have been seen to fail. The most portable solution seems to be to convert the
Fortran code to C, perhaps using f2c.
Chapter 6: The R API: entry points for C code 181
After calls to dwilcox, pwilcox or qwilcox the function wilcox_free() should be called,
and similarly signrank_free() for the signed rank functions. Since wilcox_free() and
signrank_free() were only added to Rmath.h in R 4.2.0, their use requires something like
#include "Rmath.h"
#include "Rversion.h"
6.8 Optimization
The C code underlying optim can be accessed directly. The user needs to supply a function to
compute the function to be minimized, of the type
typedef double optimfn(int n, double *par, void *ex);
where the first argument is the number of parameters in the second argument. The third
argument is a pointer passed down from the calling routine, normally used to carry auxiliary
information.
Some of the methods also require a gradient function
typedef void optimgr(int n, double *par, double *gr, void *ex);
which passes back the gradient in the gr argument. No function is provided for finite-differencing,
nor for approximating the Hessian at the result.
The interfaces (defined in header R_ext/Applic.h) are
• Nelder Mead:
void nmmin(int n, double *xin, double *x, double *Fmin, optimfn fn,
int *fail, double abstol, double intol, void *ex,
double alpha, double beta, double gamma, int trace,
int *fncount, int maxit);
• BFGS:
void vmmin(int n, double *x, double *Fmin,
optimfn fn, optimgr gr, int maxit, int trace,
int *mask, double abstol, double reltol, int nREPORT,
void *ex, int *fncount, int *grcount, int *fail);
• Conjugate gradients:
void cgmin(int n, double *xin, double *x, double *Fmin,
6
Most compilers do not check values when assigning to an enum and store this type as an int, so this may
appear to work now but it likely to fail in future.
Chapter 6: The R API: entry points for C code 187
6.9 Integration
The C code underlying integrate can be accessed directly. The user needs to supply a vector-
izing C function to compute the function to be integrated, of the type
typedef void integr_fn(double *x, int n, void *ex);
where x[] is both input and output and has length n, i.e., a C function, say fn, of type integr_
fn must basically do for(i in 1:n) x[i] := f(x[i], ex). The vectorization requirement can
be used to speed up the integrand instead of calling it n times. Note that in the current
implementation built on QUADPACK, n will be either 15 or 21. The ex argument is a pointer
passed down from the calling routine, normally used to carry auxiliary information.
There are interfaces (defined in header R_ext/Applic.h) for integrals over finite and infinite
intervals (or “ranges” or “integration boundaries”).
• Finite:
void Rdqags(integr_fn f, void *ex, double *a, double *b,
double *epsabs, double *epsrel,
double *result, double *abserr, int *neval, int *ier,
int *limit, int *lenw, int *last,
int *iwork, double *work);
• Infinite:
void Rdqagi(integr_fn f, void *ex, double *bound, int *inf,
double *epsabs, double *epsrel,
double *result, double *abserr, int *neval, int *ier,
int *limit, int *lenw, int *last,
int *iwork, double *work);
Only the 3rd and 4th argument differ for the two integrators; for the finite range integral using
Rdqags, a and b are the integration interval bounds, whereas for an infinite range integral using
Rdqagi, bound is the finite bound of the integration (if the integral is not doubly-infinite) and
inf is a code indicating the kind of integration range,
inf = 1 corresponds to (bound, +Inf),
inf = -1 corresponds to (-Inf, bound),
Chapter 6: The R API: entry points for C code 188
There is also the internal function used to expand file names in several R functions, and
called directly by path.expand.
For historical reasons there are Fortran interfaces to functions D1MACH and I1MACH. These
can be called from C code as e.g. F77_CALL(d1mach)(4). Note that these are emulations of the
original functions by Fox, Hall and Schryer on Netlib at https://netlib.org/slatec/src/ for
IEC 60559 arithmetic (required by R).
6.11 Re-encoding
R has its own C-level interface to the encoding conversion capabilities provided by iconv because
there are incompatibilities between the declarations in different implementations of iconv.
These are declared in header file R_ext/Riconv.h.
level context. The other functions mentioned in this section will usually be more appropriate
choices.
void R_CheckUserInterrupt(void);
and from Fortran
subroutine rchkusr()
These check if the user has requested an interrupt, and if so branch to R’s error signaling
functions.
Note that it is possible that the code behind one of the entry points defined here if called
from your C or Fortran code could be interruptible or generate an error and so not return to
your code.
Let us re-iterate the advice to include in C++ code system headers before the R header
files, especially Rinternals.h (included by Rdefines.h) and Rmath.h, which redefine names
which may be used in system headers, or (preferably and the default since R 4.5.0) to define
R_NO_REMAP.
Work in progress: This section is a work in progress and will be adjusted as changes are
made to the API.
Chapter 6: The R API: entry points for C code 197
EXTPTR_PROT
EXTPTR_TAG
EXTPTR_PTR
Use R_ExternalPtrProtected, R_ExternalPtrTag, and R_ExternalPtrAddr.
OBJECT
IS_S4_OBJECT
Use Rf_isObject and Rf_isS4.
GetOption
Use Rf_GetOption1.
R_lsInternal
Use R_lsInternal3.
REAL0
COMPLEX0 Use REAL and COMPLEX.
STRING_PTR
DATAPTR
STDVEC_DATAPTR
Use STRING_PTR_RO and DATAPTR_RO. Obtaining writable pointers to these data
can violate the memory manager’s integrity assumptions and is not supported.
isFrame Use Rf_isDataFrame, added in R 4.5.0.
BODY
FORMALS
CLOENV Use R_ClosureBody, R_ClosureFormals, and R_ClosureEnv; these were added in
R 4.5.0.
ENCLOS Use R_ParentEnv, added in R 4.5.0.
IS_ASCII Use Rf_charIsASCII, added in R 4.5.0.
IS_UTF8 Use charIsUTF8, added in R 4.5.0, or avoid completely.
Rf_allocSExp
Use an appropriate constructor.
Rf_findVarInFrame3
Use R_existsVarInFrame to test for existence.
Rf_findVar
Rf_findVarInFrame
Use R_getVar or R_getVarEx, added in R 4.5.0. In some cases using eval may
suffice.
ATTRIB Use Rf_getAttrib for individual attributes. To test whether there are any at-
tributes use ANY_ATTRIB, added in R 4.5.0.
Chapter 6: The R API: entry points for C code 198
SET_ATTRIB
SET_OBJECT
Use Rf_setAttrib for individual attributes, DUPLICATE_ATTRIB or SHALLOW_
DUPLICATE_ATTRIB for copying attributes from one object to another. Use
CLEAR_ATTRIB for removing all attributes, added in R 4.5.0.
R_GetCurrentEnv
Use environment() at the R level and pass the result as an argument to your C
function.
For recently added entry points packages that need to be compiled under older versions that
do not yet contain these entry points can use back-ported versions defined conditionally. See
Section 6.21.8 [Some backports], page 200.
The structure of the object header is, however, internal to R and may have to change in the
future.
IS_ASCII can be replaced by Rf_charIsASCII, added in R 4.5.0. It can also be replaced by
code that checks individual characters (bytes).
Information provided by the other macros is available via function Rf_getCharCE, which has
been part of the API since R 2.7.0. Before switching to Rf_getCharCE, packages are, however,
advised to check whether the encoding information is really needed and whether it is used
correctly.
Most code should be able to work with complete CHARSXPs and never look at the individual
bytes. When access to characters and bytes (of strings other than CE_BYTES) is needed, one
would use Rf_translateChar or Rf_translateCharUTF8. These functions internally already
check the encoding and whether the string is ASCII and only translate when needed, which
should be rarely since R >= 4.2.0 (UTF-8 is used as native encoding on most systems running
R).
Several packages use the encoding information to find out whether an internal string repre-
sentation visible via CHAR is UTF-8 or latin1. R 4.5.0 provides functions Rf_charIsUTF8 and
Rf_charIsLatin1 for this purpose, which are safer against future changes and handle also native
strings when running in the corresponding locale. Note that both will be true for ASCII strings.
A pattern used in several packages is
char *asutf8(SEXP c)
{
if (!IS_UTF8(s) && !IS_ASCII(s)) // not compliant
return Rf_translateCharUTF8(s);
else
return CHAR(s);
}
to make this code compliant, simply call
char *asutf8(SEXP c)
{
return Rf_translateCharUTF8(s); // compliant
}
as the encoding flags are already checked in Rf_translateCharUTF8. Also note the non-
compliant check does not handle native encoding.
In rare cases package R or C code may want to obtain more detailed information on a binding,
such as whether the binding is delayed or not. This is currently not possible within the API,
but is under consideration.
SEXP Rf_allocLang(int n)
{
if (n > 0)
return LCONS(R_NilValue, Rf_allocList(n - 1));
else
return R_NilValue;
}
#endif
void CLEAR_ATTRIB(SEXP x)
{
SET_ATTRIB(x, R_NilValue);
SET_OBJECT(x, 0);
UNSET_S4_OBJECT(x);
}
#endif
201
If the generic specifies defaults, all methods should use the same defaults.
An easy way to follow these recommendations is to always keep generics simple, e.g.
scale <- function(x, ...) UseMethod("scale")
Only add parameters and defaults to the generic if they make sense in all possible methods
implementing it.
run your front-end in this way, you need to ensure that R_HOME is set and LD_LIBRARY_PATH is
suitable. (The latter might well be, but modern Unix/Linux systems do not normally include
/usr/local/lib (/usr/local/lib64 on some architectures), and R does look there for system
components.)
The other senses in which this example is too simple are that all the internal defaults are used
and that control is handed over to the R main loop. There are a number of small examples2 in the
tests/Embedding directory. These make use of Rf_initEmbeddedR in src/main/Rembedded.c,
and essentially use
#include <Rembedded.h>
R_ReplDLLinit();
while(R_ReplDLLdo1() > 0) {
/* add user actions here if desired */
}
*/
Rf_endEmbeddedR(0);
/* final tidying up after R is shutdown */
return 0;
}
If you do not want to pass R arguments, you can fake an argv array, for example by
char *argv[]= {"REmbeddedPostgres", "--silent"};
Rf_initEmbeddedR(sizeof(argv)/sizeof(argv[0]), argv);
However, to make a GUI we usually do want to run run_Rmainloop after setting up various
parts of R to talk to our GUI, and arranging for our GUI callbacks to be called during the R
mainloop.
One issue to watch is that on some platforms Rf_initEmbeddedR and Rf_endEmbeddedR
change the settings of the FPU (e.g. to allow errors to be trapped and to make use of extended
precision registers).
The standard code sets up a session temporary directory in the usual way, unless R_TempDir
is set to a non-NULL value before Rf_initEmbeddedR is called. In that case the value is assumed
to contain an existing writable directory, and it is not cleaned up when R is shut down.
Rf_initEmbeddedR sets R to be in interactive mode: you can set R_Interactive (defined in
Rinterface.h) subsequently to change this.
Note that R expects to be run with the locale category ‘LC_NUMERIC’ set to its default value
of C, and so should not be embedded into an application which changes that.
2
but these are not part of the automated test procedures and so little tested.
Chapter 8: Linking GUIs and other front-ends to R 205
It is the user’s responsibility to attempt to initialize only once. To protect the R interpreter,
Rf_initialize_R will exit the process if re-initialization is attempted.
int R_ReadConsole (const char *prompt, unsigned char *buf, int [Function]
buflen, int hist)
void R_WriteConsole (const char *buf, int buflen) [Function]
void R_WriteConsoleEx (const char *buf, int buflen, int otype) [Function]
void R_ResetConsole () [Function]
void R_FlushConsole () [Function]
void R_ClearerrConsole () [Function]
These functions interact with a console.
R_ReadConsole prints the given prompt at the console and then does a fgets(3)–like op-
eration, writing up to buflen bytes into the buffer buf. The last of the bytes written should
be ‘"\0"’. When there is enough space in the buffer to hold the full input line including
the line terminator, the line terminator should be included. Otherwise, the rest of the line
should be returned in subsequent calls to R_ReadConsole. The last call should return data
terminated by the line terminator. If hist is non-zero, then the line should be added to any
command history which is being maintained. The return value is 0 if no input is available
and >0 otherwise.
R_WriteConsoleEx writes the given buffer to the console, otype specifies the output type
(regular output or warning/error). Call to R_WriteConsole(buf, buflen) is equivalent to
R_WriteConsoleEx(buf, buflen, 0). To ensure backward compatibility of the callbacks,
ptr_R_WriteConsoleEx is used only if ptr_R_WriteConsole is set to NULL. To ensure that
Chapter 8: Linking GUIs and other front-ends to R 207
stdout() and stderr() connections point to the console, set the corresponding files to NULL
via
R_Outputfile = NULL;
R_Consolefile = NULL;
R_ResetConsole is called when the system is reset after an error. R_FlushConsole is called
to flush any pending output to the system console. R_ClearerrConsole clears any errors
associated with reading from the console.
int R_ShowFiles (int nfile, const char **file, const char [Function]
**headers, const char *wtitle, Rboolean del, const char *pager)
This function is used to display the contents of files.
int R_EditFiles (int nfile, const char **file, const char [Function]
**title, const char *editor)
Send nfile files to an editor, with titles possibly to be used for the editor window(s).
R_ShowMessage(pp);
R_CleanUp(SA_SUICIDE, 2, 0);
}
R_RunExitFinalizers();
/* clean up after the editor e.g. CleanEd() */
R_CleanTempDir();
exit(status);
}
These callbacks should never be changed in a running R session (and hence cannot be called
from an extension package).
3
At least according to POSIX 2004 and later. Earlier standards prescribed sys/time.h: R_ext/eventloop.h
will include it if HAVE_SYS_TIME_H is defined.
Chapter 8: Linking GUIs and other front-ends to R 210
4
at least on platforms where the values are available, that is having getrlimit and on Linux or having sysctl
supporting KERN_USRSTACK, including FreeBSD and macOS.
Chapter 8: Linking GUIs and other front-ends to R 211
/* This version blocks all events: a real one needs to call ProcessEvents
frequently. See rterm.c and ../system.c for one approach using
a separate thread for input.
*/
int myReadConsole(const char *prompt, unsigned char *buf, int len, int addtohistory)
{
fputs(prompt, stdout);
fflush(stdout);
if(fgets((char *)buf, len, stdin)) return 1; else return 0;
}
void myCallBack(void)
{
/* called during i/o, eval, graphics in ProcessEvents */
}
R_setStartTime();
R_DefParamsEx(Rp, RSTART_VERSION);
if((RHome = get_R_HOME()) == NULL) {
fprintf(stderr, "R_HOME must be set in the environment or Registry\n");
exit(1);
}
Rp->rhome = RHome;
RUser = getRUser();
Rp->home = RUser;
Rp->CharacterMode = LinkDLL;
Rp->EmitEmbeddedUTF8 = FALSE;
Rp->ReadConsole = myReadConsole;
Rp->WriteConsole = myWriteConsole;
Rp->CallBack = myCallBack;
Rp->ShowMessage = askok;
Rp->YesNoCancel = askyesnocancel;
Rp->Busy = myBusy;
FlushConsoleInputBuffer(GetStdHandle(STD_INPUT_HANDLE));
signal(SIGBREAK, my_onintr);
GA_initapp(0, 0);
readconsolecfg();
setup_Rmainloop();
#ifdef SIMPLE_CASE
run_Rmainloop();
#else
R_ReplDLLinit();
while(R_ReplDLLdo1() > 0) {
/* add user actions here if desired */
}
/* only get here on EOF (not q()) */
#endif
Rf_endEmbeddedR(0);
return 0;
}
The ideas are
• Check that the front-end and the linked R.dll match – other front-ends may allow a looser
match.
• Find and set the R home directory and the user’s home directory. The former
may be available from the Windows Registry: it will be in HKEY_LOCAL_
MACHINE\Software\R-core\R\InstallPath from an administrative install and
HKEY_CURRENT_USER\Software\R-core\R\InstallPath otherwise, if selected during
installation (as it is by default).
• Define startup conditions and callbacks via the Rstart structure. R_DefParams sets the
defaults, and R_SetParams sets updated values. R_DefParamsEx takes an extra argument,
the version number of the Rstart structure provided (RSTART_VERSION refers to the current
version) and returns a non-zero status when that version is not supported by R.
• Record the command-line arguments used by R_set_command_line_arguments for use by
the R function commandArgs().
Chapter 8: Linking GUIs and other front-ends to R 213
. \option . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
.C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 126 \out . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
.Call . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143, 156 \packageAuthor . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.External . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 143, 156 \packageDescription . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.Fortran . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 126 \packageDESCRIPTION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.Last.lib . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 \packageIndices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.onAttach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 \packageMaintainer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.onDetach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 \packageTitle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
.onLoad . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 \pkg . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
.onUnload . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 \preformatted . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
.Random.seed . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 \R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
\RdOpts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
\ \references . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
\renewcommand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
\abbr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\S3method . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
\acronym . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
\samp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
\alias . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
\arguments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86 \section . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90
\author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 \seealso . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
\bold . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 \Sexpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97
\cite . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 \source . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89
\code . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 \sQuote . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
\command . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 \sspace . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
\concept . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96 \strong . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
\cr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 90 \tabular . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\CRANpkg{pkg} . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 \title . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
\deqn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94 \url . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
\describe . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93 \usage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
\description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 \value . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
\details . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
\var . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
\dfn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
\verb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
\doi{identifier}. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
\dontdiff . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88
\dontrun . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
\dontshow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
\donttest . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 A
\dots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 addInputHandler. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
\dQuote . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 ALTREP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
\email . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 ALTREP_CLASS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
\emph . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91
ANY_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
\enc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
AUTHORS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
\enumerate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\env . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92
\eqn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94
\examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
\figure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 B
\file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 bessel_i . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
\format . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 bessel_j . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
\href . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 92 bessel_k . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
\if . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
bessel_y . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
\ifelse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
beta . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
\itemize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\kbd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 BLAS_LIBS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
\keyword . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 browser . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108
\ldots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95
\link . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\linkS4class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93
\method . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
\name . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84
\newcommand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
\note . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87
Function and variable index 216
C F
CAAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 FALSE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
CAD4R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 findInterval . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
CAD5R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 findInterval2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
CADDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 FLIBS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
CADDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 fmax2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CADR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 fmin2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
fprec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CallocCharBuf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
fpu_setup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
CAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
fround . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CDAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
fsign . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CDDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 ftrunc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
CDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
cgmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 G
CHAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163 gammafn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
choose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 gctorture . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
citation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17, 81 getInputHandler. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
CleanEd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 GetRNGstate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
CLEAR_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
COMPLEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
COMPLEX_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 I
COMPLEX_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 i1mach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
COMPLEX_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 imax2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
COMPLEX_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 imin2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 import . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
COPYRIGHTS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6, 17 importClassesFrom . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
cospi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 importFrom . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50
importMethodsFrom . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55
INTEGER . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
INTEGER_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
D INTEGER_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
INTEGER_IS_SORTED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
d1mach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 INTEGER_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
DATAPTR_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 INTEGER_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
DATAPTR_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 INTEGER_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
dblepr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 integr_fn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
dblepr1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 interv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
debug . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111 intpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
debugger . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 110 intpr1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
digamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 IS_LONG_VEC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
dpsifn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 IS_SCALAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
dump.frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 110 ISNA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
DUPLICATE_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 ISNAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
dyn.load . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
dyn.unload . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
L
labelpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
LAPACK_LIBS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
E lbeta . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
lbfgsb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
exp_rand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 lchoose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
expm1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 LCONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154, 160
export . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 LENGTH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 162
exportClasses . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 lgamma1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
exportClassPattern . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 55 lgammafn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
exportMethods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 54 library.dynam . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14, 128
exportPattern . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49, 55 log1mexp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
log1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
log1pexp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
log1pmx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
LOGICAL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
LOGICAL_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
LOGICAL_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Function and variable index 217
LOGICAL_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R
LOGICAL_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R CMD build . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
LOGICAL_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 R CMD check . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40
logspace_add . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 R CMD config . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
logspace_sub . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 R CMD Rd2pdf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
logspace_sum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 R CMD Rdconv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
R CMD SHLIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
R CMD Stangle . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
M R CMD Sweave . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
R_ActiveBindingFunction . . . . . . . . . . . . . . . . . . . . . . 154
M_E . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185 R_addhistory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
M_PI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185 R_alloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146, 172
MARK_NOT_MUTABLE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_allocLD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172
MAYBE_REFERENCED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_altrep_data1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
MAYBE_SHARED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_altrep_data2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Memcpy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 R_atof . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
Memzero . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 R_BindingIsActive . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_BindingIsLocked . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_Busy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
N R_BytecodeExpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
R_Calloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
NA_REAL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175 R_CHAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163
news . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 R_check_class_etc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
nmmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_CheckStack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192
NO_REFERENCES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_CheckStack2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192
norm_rand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 R_CheckUserInterrupt . . . . . . . . . . . . . . . . . . . . . . . . . . 192
NOT_SHARED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_chk_calloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
R_chk_free . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
R_chk_realloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
O R_ChooseFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
R_CleanTempDir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
OBJECTS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26, 137 R_CleanUp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
optimfn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_ClearerrConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
optimgr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_ClearExternalPtr . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
R_ClosureBody . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
R_ClosureEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
R_ClosureExpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
P R_ClosureFormals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
pentagamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_compute_identical . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
PKG_CFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_ContinueUnwind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
PKG_CPPFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_csort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
PKG_CXXFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_dataentry . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
PKG_FCFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 R_dataviewer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
PKG_FFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_DefParams . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212
PKG_LIBS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_DefParamsEx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212
PKG_OBJCFLAGS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_DimNamesSymbol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149
PKG_OBJCXXFLAGS. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_do_MAKE_CLASS. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
pow1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_do_new_object. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
PRINTNAME . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 R_do_slot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
prompt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 R_do_slot_assign . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
PROTECT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144 R_dot_Last . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
PROTECT_WITH_INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145 R_EditFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
psigamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_EditFiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
PutRNGstate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 R_EnvironmentIsLocked . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_ExecWithCleanup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_existsVarInFrame . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_ExpandFileName . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
Q R_ExternalPtrAddr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
qsort3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189 R_ExternalPtrAddrFn . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
qsort4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189 R_ExternalPtrProtected. . . . . . . . . . . . . . . . . . . . . . . . 166
R_ExternalPtrTag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
R_FindNamespace. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_FindSymbol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
R_FINITE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
Function and variable index 218
API index
Entry points and variables listed in this index and in header files listed here are intended to be
used in distributed packages and ideally will only be changed after deprecation.
A F
ANY_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 FALSE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
findInterval . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
findInterval2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
fmax2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
B fmin2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
bessel_i . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 fprec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
fround . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
bessel_j . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
fsign . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
bessel_k . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
ftrunc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
bessel_y . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
beta . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
G
gammafn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
C GetRNGstate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
CAAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
CAD4R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 I
CAD5R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
i1mach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
CADDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 imax2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CADDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 imin2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
CADR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 INTEGER . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
CAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 INTEGER_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
CDAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 INTEGER_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
CDDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 integr_fn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
CDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 interv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
CDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157 ISNA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
cgmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 ISNAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
CHAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163
choose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
CLEAR_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 L
COMPLEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 lbeta . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
COMPLEX_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 lbfgsb . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
COMPLEX_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 lchoose . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
CONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 LCONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154, 160
cospi . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 LENGTH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 162
lgamma1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
lgammafn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
log1mexp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
D log1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
d1mach . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 log1pexp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
DATAPTR_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168 log1pmx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
digamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 LOGICAL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
LOGICAL_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
dpsifn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
LOGICAL_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
DUPLICATE_ATTRIB . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
logspace_add . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
logspace_sub . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
logspace_sum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
E
exp_rand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 M
expm1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184
M_E . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
M_PI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
MARK_NOT_MUTABLE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
MAYBE_REFERENCED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
MAYBE_SHARED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155
API index 222
N R_GetCCallable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
NA_REAL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175 R_GetCurrentSrcref . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
nmmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_GetSrcFilename . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
NO_REFERENCES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_getVar . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
norm_rand . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 R_getVarEx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
NOT_SHARED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155 R_INLINE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 194
R_isnancpp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
R_IsNaN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
O R_isort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
R_MakeExternalPtr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
optimfn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
R_MakeExternalPtrFn . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
optimgr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
R_MakeUnwindCont . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_MakeWeakRef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
R_MakeWeakRefC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
P R_max_col . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
pentagamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_mkClosure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
pow1p . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_NamesSymbol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149
PRINTNAME . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 R_NegInf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
PROTECT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144 R_NewEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
PROTECT_WITH_INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145 R_NewPreciousMSet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
psigamma . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 R_NilValue . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
PutRNGstate . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174 R_orderVector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
R_orderVector1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
R_ParentEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R R_ParseEvalString . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
R_alloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146, 172 R_ParseString . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
R_allocLD . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172 R_ParseVector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 165
R_atof . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 R_PosInf . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175
R_BytecodeExpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 R_pow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
R_Calloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 R_pow_di . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
R_CHAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 163 R_PreserveInMSet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_CheckStack . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192 R_PreserveObject . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_CheckStack2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192 R_ProtectWithIndex . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_CheckUserInterrupt . . . . . . . . . . . . . . . . . . . . . . . . . . 192 R_qsort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ClearExternalPtr . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 R_qsort_int . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ClosureBody . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 R_qsort_int_I . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ClosureEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 R_qsort_I . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ClosureExpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 R_Realloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
R_ClosureFormals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151 R_RegisterCCallable . . . . . . . . . . . . . . . . . . . . . . . . . . . 136
R_ContinueUnwind . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191 R_RegisterCFinalizer . . . . . . . . . . . . . . . . . . . . . . . . . . 167
R_csort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188 R_RegisterCFinalizerEx. . . . . . . . . . . . . . . . . . . . . . . . 167
R_DimNamesSymbol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 149 R_RegisterFinalizer . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
R_ExecWithCleanup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191 R_RegisterFinalizerEx . . . . . . . . . . . . . . . . . . . . . . . . . 167
R_ExpandFileName . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 R_registerRoutines . . . . . . . . . . . . . . . . . . . . . . . . . . . . 130
R_ext/Arith.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 R_ReleaseFromMSet . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_ext/BLAS.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181 R_ReleaseObject. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_ext/Boolean.h. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_Reprotect . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 145
R_ext/Complex.h. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 126 R_rsort . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
R_ext/Constants.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186 R_RunWeakRefFinalizer . . . . . . . . . . . . . . . . . . . . . . . . . 167
R_ext/Error.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171 R_SetExternalPtrAddr . . . . . . . . . . . . . . . . . . . . . . . . . . 166
R_ext/Lapack.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181 R_SetExternalPtrProtected . . . . . . . . . . . . . . . . . . . . 166
R_ext/Linpack.h. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181 R_SetExternalPtrTag . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
R_ext/Memory.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 196 R_ShowMessage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
R_ext/Random.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 196 R_strtod . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
R_ext/Riconv.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 R_tmpnam . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ext/Visibility.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . 135 R_tmpnam2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
R_ExternalPtrAddr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 R_ToplevelExec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_ExternalPtrAddrFn . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 R_tryCatch . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_ExternalPtrProtected. . . . . . . . . . . . . . . . . . . . . . . . 166 R_tryCatchError. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_ExternalPtrTag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 R_tryEval . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_FindSymbol . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 R_tryEvalSilent. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_FINITE . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 175 R_unif_index . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
R_forceSymbols . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132 R_UnwindProtect. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191
R_Free . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173 R_useDynamicSymbols . . . . . . . . . . . . . . . . . . . . . . . . . . . 132
R_free_tmpnam . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189 R_Version . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
API index 223
S_alloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172
S_realloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172 V
samin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
VECTOR_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
SET_COMPLEX_ELT. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
VECTOR_PTR_RO . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
SET_INTEGER_ELT. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
vmaxget . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172
SET_LOGICAL_ELT. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
vmaxset . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 172
SET_RAW_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
vmmin . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
SET_REAL_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
SET_STRING_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
SET_TAG . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 160 W
SET_VECTOR_ELT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
SETCAD4R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 wilcox_free . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 182
SETCADDDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
SETCADDR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158
SETCADR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 X
SETCAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158 XLENGTH . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 74
225
D Q
dblepr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 qsort3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
dblepr1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 qsort4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 189
I
intpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 R
intpr1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 rchkusr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192
realpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
realpr1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
L rexit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
labelpr . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176 rwarn . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 174
226
A R_GetX11Image . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 196
ALTREP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R_has_slot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
ALTREP_CLASS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R_InitFileInPStream . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
R_InitFileOutPStream . . . . . . . . . . . . . . . . . . . . . . . . . . 193
R_InitInPStream. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
C R_InitOutPStream . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
COMPLEX_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R_IsNamespaceEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
COMPLEX_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170 R_IsPackageEnv . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_LockBinding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_LockEnvironment . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
D R_lsInternal3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_MakeActiveBinding . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
DATAPTR_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_NamespaceEnvSpec . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_PackageEnvName . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
I R_removeVarFromFrame . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_Serialize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
INTEGER_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_set_altrep_data1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
INTEGER_IS_SORTED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_set_altrep_data2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
INTEGER_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_unLockBinding. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
INTEGER_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_Unserialize . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 193
IS_LONG_VEC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
RAW_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
IS_SCALAR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
RAW_OR_NULL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
REAL_GET_REGION. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
L REAL_IS_SORTED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
REAL_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
LOGICAL_GET_REGION . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
REAL_OR_NULL . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
LOGICAL_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Rf_allocS4Object . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
LOGICAL_OR_NULL. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Rf_any_duplicated . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
Rf_any_duplicated3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R Rf_asS4 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
Rf_charIsASCII . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169
R_ActiveBindingFunction . . . . . . . . . . . . . . . . . . . . . . 154
Rf_charIsLatin1. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169
R_altrep_data1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Rf_charIsUTF8 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169
R_altrep_data2 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
Rf_copyListMatrix . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_BindingIsActive . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
Rf_duplicated . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_BindingIsLocked . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
Rf_isBlankString . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
R_check_class_etc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
Rf_isUnsorted . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_chk_calloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
Rf_isVectorizable . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_chk_free . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
Rf_listAppend . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_chk_realloc . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
Rf_match . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_compute_identical . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
Rf_nlevels . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_do_MAKE_CLASS. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
Rf_PairToVectorList . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_do_new_object. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
R_do_slot . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150 Rf_pmatch . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_do_slot_assign . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150 Rf_psmatch . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_EnvironmentIsLocked . . . . . . . . . . . . . . . . . . . . . . . . . 154 Rf_StringBlank . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
R_existsVarInFrame . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 Rf_StringFalse . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
R_ext/Altrep.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170, 172 Rf_StringTrue . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 153
R_ext/GraphicsDevice.h. . . . . . . . . . . . . . . . . . . . . . . . 196 Rf_VectorToPairList . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
R_ext/GraphicsEngine.h. . . . . . . . . . . . . . . . . . . . . . . . 196
R_ext/QuartzDevice.h . . . . . . . . . . . . . . . . . . . . . . . . . . 196
R_FindNamespace. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 S
R_forceAndCall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154 STRING_IS_SORTED . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
R_getClassDef . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150 STRING_NO_NA . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 170
227
A R_InputHandlers. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
addInputHandler. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209 R_Interactive . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_loadhistory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
R_PolledEvents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
C R_ProcessEvents. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 213
R_ReadConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
CleanEd . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 R_ReplDLLdo1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_ReplDLLinit . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
F R_ResetConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
R_RunExitFinalizers . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
fpu_setup . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 R_RunPendingFinalizers. . . . . . . . . . . . . . . . . . . . . . . . 208
R_SaveGlobalEnv. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
R_savehistory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
G R_set_command_line_arguments . . . . . . . . . . . . . . . . . 211
getInputHandler. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209 R_SetParams . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212
R_setStartTime . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211
R_ShowFiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
R R_TempDir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_addhistory . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207 R_wait_usec . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
R_Busy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206 R_WriteConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
R_ChooseFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207 R_WriteConsoleEx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206
R_CleanTempDir . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 Rembedded.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_CleanUp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 removeInputHandler . . . . . . . . . . . . . . . . . . . . . . . . . . . . 209
R_ClearerrConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206 Rf_endEmbeddedR. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_DefParams . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212 Rf_initEmbeddedR . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_DefParamsEx . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212 Rf_KillAllDevices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208
R_dot_Last . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 208 Rinterface.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_EditFile . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207 run_Rmainloop . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 204
R_EditFiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 207
R_ext/RStartup.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211
R_FlushConsole . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 206 S
R_getEmbeddingDllInfo . . . . . . . . . . . . . . . . . . . . . . . . . 209 setup_Rmainloop. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211
228
Concept index
. F
.install extras file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 Figures in documentation . . . . . . . . . . . . . . . . . . . . . . . . . 95
.Rbuildignore file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 finalizer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166
.Rinstignore file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 Finding variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
A G
Allocating storage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 146 Gamma function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183
Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 148 Garbage collection. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144
Generic functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201
B
Bessel functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 H
Beta function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 handling character data . . . . . . . . . . . . . . . . . . . . . . . . . 151
Building binary packages . . . . . . . . . . . . . . . . . . . . . . . . . 45 Handling lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
Building source packages . . . . . . . . . . . . . . . . . . . . . . . . . 43 Handling R objects in C . . . . . . . . . . . . . . . . . . . . . . . . . 143
C I
C stack checking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192 IEEE special values . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
C++ code, interfacing . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138 INDEX file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Calling C from Fortran and vice versa . . . . . . . . . . . 177 Indices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
Checking packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 40 Inspecting R objects when debugging . . . . . . . . . . . . 121
CITATION file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17, 81 integration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 187
Classes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150 Interfaces to compiled code . . . . . . . . . . . . . . . . . 126, 156
Cleanup code. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190 Interfacing C++ code . . . . . . . . . . . . . . . . . . . . . . . . . . . . 138
cleanup file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Interrupts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192
Condition handling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
conditionals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
configure file. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 L
Copying objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
LICENCE file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
CRAN . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
LICENSE file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
Creating packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Lists and tables in documentation . . . . . . . . . . . . . . . . 93
Creating shared objects . . . . . . . . . . . . . . . . . . . . . . . . . 137
Cross-references in documentation . . . . . . . . . . . . . . . . 93
cumulative hazard . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 181
M
Marking text in documentation . . . . . . . . . . . . . . . . . . . 91
D Mathematics in documentation . . . . . . . . . . . . . . . . . . . 94
Debugging . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 Memory allocation from C . . . . . . . . . . . . . . . . . . . . . . . 172
DESCRIPTION file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 Memory use . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103
Details of R types . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 147 Method functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 201
Distribution functions from C . . . . . . . . . . . . . . . . . . . 181 Missing values . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 158, 175
Documentation, writing . . . . . . . . . . . . . . . . . . . . . . . . . . 83
Dynamic loading . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
dynamic pages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 97 N
namespaces. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
NEWS.Rd file . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17
E Numerical analysis subroutines from C. . . . . . . . . . . 181
Editing Rd files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 100 Numerical derivatives. . . . . . . . . . . . . . . . . . . . . . . . . . . . 161
encoding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
Error handling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 190
Error signaling from C . . . . . . . . . . . . . . . . . . . . . . . . . . 173 O
Error signaling from Fortran . . . . . . . . . . . . . . . . . . . . . 174 OpenMP . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28, 193
Evaluating R expressions from C . . . . . . . . . . . . . . . . 159 Operating system access . . . . . . . . . . . . . . . . . . . . . . . . . 126
external pointer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166 optimization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 186
Concept index 229
P T
Package builder . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 tarballs. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43
Package structure. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 Tidying R code. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101
Package subdirectories . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
Packages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Parsing R code from C . . . . . . . . . . . . . . . . . . . . . . . . . . 164
Platform-specific documentation . . . . . . . . . . . . . . . . . . 96 U
Polygamma functions. . . . . . . . . . . . . . . . . . . . . . . . . . . . 183 user-defined macros. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98
Printing from C . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
Printing from Fortran . . . . . . . . . . . . . . . . . . . . . . . . . . . 176
Processing Rd format . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99
Profiling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 101, 103, 104 V
Version information from C . . . . . . . . . . . . . . . . . . . . . . 193
vignettes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45
R Visibility . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 194
Random numbers in C . . . . . . . . . . . . . . . . . . . . . . 174, 181
Random numbers in Fortran . . . . . . . . . . . . . . . . . . . . . 177
Registering native routines . . . . . . . . . . . . . . . . . . . . . . 130
W
weak reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167
S Working with closures . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
S4 objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
Serialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 192
Setting variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 152
Sort functions from C . . . . . . . . . . . . . . . . . . . . . . . . . . . 188
Z
Sweave . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 Zero-finding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 160