-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.Rmd
57 lines (41 loc) · 1.19 KB
/
README.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
---
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
require(mosaic)
set.rseed(1234)
```
ISIwithR
=======
This R Companion to
[Introduction to Statistical Investigations (Preliminary Edition)](http:://www.hope.edu/isi/)
by Nathan Tintle *et al*
provides
* a companion text demonstrating how to use R to perform the analyses in that book
* an R package (`ISIwithR`)
## Companion Text
The campanion text is available as a PDF
[[to view]](Book/ISIwithR.pdf) or [[to download]](../../raw/master/Book/ISIwithR.pdf)
* The authors are Randall Pruim and Lana Park.
## R Package
The `ISIwithR` package can be installed from github using
```{r, devtools, eval=FALSE}
devtools::install_github("rpruim/ISIwithR")
```
This package contains
* all of the data sets used in the book, and
* the `isa_snippet()` function which can be used to run any of
`r length(ISIwithR::isi_snippet())` code chunks from the campanion.
For example:
```{r, require, message=FALSE}
require(ISIwithR)
require(mosaic)
```
```{r, snippet}
isi_snippet("Exploration6.3.8")
```