-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathrCh09.Rmd
53 lines (45 loc) · 1.01 KB
/
rCh09.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
---
title: "rCh09"
author: "Win-Vector LLC"
date: "December 11, 2015"
output:
md_document:
variant: markdown_github
---
```{r sourceFns1}
rm(list=ls())
source('runDir.R')
```
```{r ch9ex1, tidy=FALSE,comment='',prompt=FALSE}
library('ggplot2')
runDir('../CodeExamples/c09_Exploring_advanced_methods',
'../Spambase',last=179)
```
```{r sourceFns2}
rm(list=ls())
source('runDir.R')
```
```{r ch9ex2, tidy=FALSE,comment='',prompt=FALSE}
library('ggplot2')
runDir('../CodeExamples/c09_Exploring_advanced_methods',
'../CDC',first=180,last=184)
```
```{r sourceFns3}
rm(list=ls())
source('runDir.R')
```
```{r ch9ex3, tidy=FALSE,comment='',prompt=FALSE}
library('ggplot2')
load('../PUMS/psub.RData')
runDir('../CodeExamples/c09_Exploring_advanced_methods',
'../PUMS',first=185,last=195)
```
```{r sourceFns4}
rm(list=ls())
source('runDir.R')
```
```{r ch9ex4, tidy=FALSE,comment='',prompt=FALSE}
library('ggplot2')
runDir('../CodeExamples/c09_Exploring_advanced_methods',
'../Spambase',first=196)
```