Foundations of Statistics with R
2019-11-07
Preface
This is a book on probability and statistics suitable for the sophomore or junior level at university. We assume knowledge of calculus at the level of Calculus II. We do not assume prior experience with statistics or programming, though students who have no experience with either statistics or programming before starting this class should expect to have to work hard. We will be using R as an integral part of the exposition — you should not read this book without first getting R Studio installed. We will use base R and tidyverse
tools for the most part, with a few exceptions. We will not call on the full realm of tidyverse tools, but focus rather on:
ggplot2
is used for all graphics. We learnedggplot
from the fantastic book, ggplot2 by Hadley Wickham. I strongly encourage readers to refer to that book whenever they have a question about plotting.dplyr
is used for data manipulation. Whenever a data manipulation problem gets tricky, we will switch to the methods ofdplyr
.- The
gather
function from the packagetidyr
is used in several places.
We will also use datasets from ISwR
, MASS
and Sleuth3
frequently, and from car
, and babynames
in places.
No book like this would be complete without a list of books that would be useful for the student who wishes to learn more than what is in this book. Here is a list of other resources that I have enjoyed learning from.
- ggplot2, by Hadley Wickham, gives a nice overview of the capabilities of the
ggplot2
package. Students interested in data visualization would find this book interesting. - Advanced R, by Hadley Wickham, provides much more information on R than what we cover in this book. Computer Science students might enjoy reading this book.
- The Statistical Sleuth, by Ramsey and Schafer, will help the student think more like a statistician when dealing with data sets.
- Modern Applied Statistics with S, by Venables and Ripley, is a more advanced book.
- Introductory Statistics with R, by Peter Dalgaard, is a concise introduction to using R for many types of statistical procedures.
- Mathematical Statistics with Applications, by Wackerly, Mendenhall and Schaeffer, is a more mathematical (but still only requiring multivariate calculus and perhaps basic linear algebra) look at the topics of this book. Students interested in the theory and proofs behind the material in this book would enjoy reading it.
- Datacamp is an on-line, interactive tutorial based method of learning data science in general, and R in particular.
- The package
data.table
. If I were going to inculde a package that isn’t part of thetidyverse
, this would be it. It is widely used for data manipulation, and I have found it to be significantly faster than other R tools for many classes of problems. If you find that your code is running too slowly, it may be time to learndata.table
.
Our philosophy in this book is to not shy away from messy data sets. We have relatively extensive sections on getting data into its correct format, and we have many exercises with dealing with data. I feel that this is an essential part of the course.
We are assuming a knowledge of calculus through the Fundamental Theorem of Calculus, some knowledge of infinite series, and integration. However, the main parts of the book do not require calculus. Proofs of some results are provided, but this is not intended to support a proof based course. I strongly encourage students to understand the proofs, but often one only wants to understand the proof after understanding the result and why it is important. When we use mathematical background that some students may be rusty on, we provide a link to the Wikipedia page on that topic.
This is book is written in Markdown using the bookdown
package. If, or should I rather say when, you find typos, mistakes or ideas for improvement, please create a pull request on bitbucket here. The original idea for a course of this type is due to Michael Lamar.
Thanks to Anna Medley and Conor for finding typos!
0.1 Installing R
Mac Users
- visit here,
- Click on the “Download R for (Mac) OS X” link at the top of the page.
- Click on the file containing the latest version of R under “Files.” (Currently 3.4.1, as of July 13, 2017).
- Save the .pkg file, double-click it to open, and follow the installation instructions.
- Next we need to install RStudio.
- Go to www.rstudio.com and click on the “Download RStudio” button.
- Click on “Download RStudio Desktop.”
- Click on the version recommended for your system, or the latest Mac version, save the .dmg file on your computer, double-click it to open, and then drag and drop it to your applications folder.
- Finally we install crucial packages.
- Open RStudio.
- At the
>
prompt inside Console, type (or copy and paste)install.packages(c("ggplot2", "dplyr", "ISwR", "MASS", "Sleuth3", "rmarkdown", "tidyr"))
.
Windows Users
- visit here,
- Click on the “Download R for Windows” link at the top of the page.
- Click on the “base” link.
- Click “R-patched.exe” and save the executable file somewhere on your computer. Run the .exe file and follow the installation instructions.
- Next we need to install RStudio.
- Go to www.rstudio.com and click on the “Download RStudio” button.
- Click on “Download RStudio Desktop.”
- Click on the version recommended for your system, or the latest Windows version, and save the executable file. Run the .exe file and follow the installation instructions.
- Finally we install crucial packages.
- Open RStudio.
- At the
>
prompt inside Console, type (or copy and paste)install.packages(c("ggplot2", "dplyr", "ISwR", "MASS", "Sleuth3", "rmarkdown", "tidyr"))
.