March 2017
Beginner to intermediate
1065 pages
27h 7m
English
In this section, we will explore the rate of death due to cancer in the US. This will allow us to have a better feel of the importance of plotting data using a practical example. We will also discover interesting tools along the way. We will start by discovering the dataset, plotting some data, integrating data from other sources.
The dataset is part of latticeExtra, so we will install and load it first:
install.packages("latticeExtra")
library(latticeExtra)Note that this may update lattice and require to restart R.
Let's start by having a look at the attributes in the dataset and 3 rows of data:
head(USCancerRates, 3)
This outputs, included in the figure below, shows that ...
Read now
Unlock full access