-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.Rmd
69 lines (44 loc) · 1.67 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: "Foundations and Applications of Statistics (2e)"
author: "Randall Pruim"
date: "8/13/2018"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = TRUE,
fig.width = 4, fig.height = 2.5,
fig.align = "center", fig.keep = "hold")
require(fastR2)
```
# Foundations and Applications of Statistics, An Introduction Using R
![](images/fast28cover.png)
## Errata List
* A [list of detected errata](Errata2e.html) is available and will be updated as needed. This is also available
as a vignette in the `fastR2` R package.
## fastR2 R package
The `fastR2` R package is available via [CRAN](https://CRAN.R-project.org/package=fastR2)
```{r, eval = FALSE}
install.packages("fastR2")
```
or GitHub
```{r, eval = FALSE}
library(devtools)
install_github("rpruim/fastR2", build_vignettes = TRUE)
```
Updates to the GitHub version of the package are more frequent than updates on CRAN.
### Snippets
Code chunks from the text can be executed using the `snippet()` function.
```{r}
require(fastR2) # or library(fastR2)
theme_set(theme_bw()) # set theme for plots
snippet("histogram01") # execute the histogram01 snippet
```
### Bug reports
If you detect an problems with the R package, please post an [issue on GitHub](https://github.com/rpruim/fastR2/issues).
## Solutions to Exercises
I'm working on a set of solutions to the exercises in the text. Instructors may
request solutions to exercises by sending email to `rpruim` at `calvin.edu`.
Include a description of the course you are teaching and a link to your course
home page or other indicator that you are the instructor of a course using
*Foundations and Applications of Statistics*.