forked from johnmyleswhite/ML_for_Hackers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfast_check.R
More file actions
47 lines (36 loc) · 712 Bytes
/
fast_check.R
File metadata and controls
47 lines (36 loc) · 712 Bytes
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
setwd('01-Introduction')
source('ufo_sightings.R')
setwd('..')
setwd('02-Exploration')
source('chapter02.R')
setwd('..')
setwd('03-Classification')
source('email_classify.R')
setwd('..')
setwd('04-Ranking')
source('priority_inbox.R')
setwd('..')
setwd('05-Regression')
source('chapter05.R')
setwd('..')
setwd('06-Regularization')
source('chapter06.R')
setwd('..')
setwd('07-Optimization')
source('chapter07.R')
setwd('..')
setwd('08-PCA')
source('chapter08.R')
setwd('..')
setwd('09-MDS')
source('chapter09.R')
setwd('..')
setwd('10-Recommendations')
source('chapter10.R')
setwd('..')
#setwd('11-SNA')
#source('chapter09.R')
#setwd('..')
setwd('12-Model_Comparison')
source('chapter12.R')
setwd('..')