A Getting help
A.1 Introduction
R has a comprehensive built-in help system orientated around the base R functions, and every good external package also comes with its own set of help files. These provide information about individual package functions and summarise the included data sets. They also sometimes give descriptions of how different parts of the package should be used, and if we’re lucky, one or more ‘vignettes’ that offer a practical demonstration of how to use the package.
We may as well get something out of the way early on. The word ‘help’ in the phrase ‘help file’ is a bit of a misnomer. It’s more accurate to say R has an extensive documentation system. Help files are designed first and foremost to carefully document the different elements of a package, rather than explain how a particular function or the package as whole should be used to achieve a given end. They are aimed more at experienced users than novices. That said, help files often contain useful examples, and many package authors do try to make our life easier by providing functional demonstrations of their package.
It is important to get to grips with the built in help system. It contains a great deal of useful information which we need to really start using R effectively. The road to enlightenment is bumpy though.
A.2 Browsing the help system
Help files are a little like mini web pages, which means we can navigate among them using hyperlinks. One way to begin browsing the help system uses the help.start
function:
help.start()
When we run this function the Package Index page should open up in the Help tab of the bottom right pane in RStudio. This lists all the packages currently installed on a computer. We can view the help files associated with a package by clicking on the appropriate link. For example, all the functions that come with the base installation of R have a help file associated with them—we can click on the link to the R base package (base
) to see these.
The packages that we install separately each have their own set of associated help files. We will see how to navigate these in a moment.
The help browser has Forward, Back, and Home buttons, just like a normal web browser. If we get lost in the mire of help pages we can always navigate backward until we get back to a familiar page. Clicking on the home button takes us to a page with three sections:
The Manuals section looks like it might be useful for novice users. Unfortunately, it’s not. Even the “Introduction to R” manual is only helpful for someone who understands what terms like ‘data structure’ and ‘data type’ mean. The others are more or less impenetrable unless the reader already knows quite a bit about computing in general.
The Reference section is a little more helpful. The “Packages” link takes us to the same page opened by
help.start
. From here we can browse the help pages on a package-specific basis. The “Search Engine & Keywords” link takes us to a page we can use to search for specific help pages, either by supplying a search term or by navigating through the different keywords.The Miscellaneous Material section has a couple of potentially useful links. The “User Manuals” link lists any user manuals supplied by package authors. The “Frequently Asked Questions” link is definitely worth reviewing at some point, tough again, most of the FAQs are a little difficult for novice users to fully understand.
A.3 Searching for help files
After browsing help files via help.start
for a bit it quickly becomes apparent that this way of searching for help is very inefficient. We often know the name of the function we need to use and all we want to do is open that particular help file. We can do this using the help
function:
help(topic = Trig)
After we run this line RStudio opens up the help file for the trigonometry topic in the Help tab. This file provides information about the various trigonometric functions such as sin
or cos
(we’ll see how to make sense of such help pages in a bit).
The help
function needs a minimum of one argument: the name of the topic or function of interest. When we use it like this the help function searches across packages, looking for a help file whose name gives an exact match to the name we supplied. In this case, we opened the help file associated with the Trig
topic.
Most of the time we use the help
function to find the help page for a specific function, rather than a general topic. This is fine if we can remember the name of the topic associated with different functions. Most of us cannot. Luckily, the help function will also match help pages by the name of the function(s) they cover:
help(topic = sin)
Here we searched for help on the sin
function. This is part of the Trig
topic so help(topic = sin)
brings up the same page as the help(topic = Trig)
.
By default, the help
function only searches for files associated with the base functions or with packages that we have loaded in the current session with the library
function. If we want to search for help on the mutate
function—part of the dplyr package—but we haven’t run library(dplyr)
in the current session this will fail:
help(mutate)
Instead, we need tell help
where to look by setting the package
argument:
help(mutate, package = "dplyr")
Even very experienced R users regularly forget how to use the odd function and have to dive into the help. It’s for this reason that R has a built in shortcut for help
accessed via ?
. For example, instead of typing help(topic = sin)
into the Console we can bring up the help page for the sin
function by using ?
like this:
?sin
This is just a convenient shortcut that does the same thing as help
. The only difference is that ?
does not allow us to set arguments such as package
.
A.5 Vignettes
The purpose of a package vignette is to provide a relatively brief, practical account of one or more of its features. Not all packages come with vignettes, though the best packages often do. We use the vignette
function to view all the available vignettes in Rstudio. This will open up a tab that lists each vignette under their associated package name along with a brief description. A package will often have more than one vignette.
If we just want to see the vignettes associated with a particular package, we have to set the package
argument. For example, to see the vignettes associated with dplyr we use:
vignette(package = "dplyr")
Each vignette has a name (the “topic”) and is available either as a PDF or HTML file (or both). We can view a particular vignette by passing the vignette
function the package
and topic
arguments. For example, to view the “grouping” vignette in the dplyr package we would use:
vignette(topic = "grouping", package = "dplyr")
The vignette
function is fine, but it is more convenient to browse the list of vignettes inside a web browser. This allows us to open a particular vignette directly by clicking on its link, rather than working at the Console. We can use the browseVignettes
function to do this:
browseVignettes()
This will open a page in our browser showing the vignettes we can view. As usual, we can narrow our options to a specific package by setting the package
argument.