-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
60 lines (36 loc) · 1.33 KB
/
index.Rmd
File metadata and controls
60 lines (36 loc) · 1.33 KB
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
# Ensemble Network Aggregation
## Define Simulation Settings
```{r globals}
SIZE <- c("tiny","small","moderate","middle","large")
NP <- as.character(c(20, 50, 100, 200, 500, 1000))
NOISE <- as.character(c(0.25, 0.5, 1, 1.5))
BOOTSTRAP_COUNT <- 140
set.seed(1234)
library(knitr)
```
## Simulate Networks
```{r simulate, results='hide', message=FALSE, echo=FALSE, cache=TRUE}
sim <- knit_child("simulate/simulateNetworks.Rmd", eval=TRUE)
```
`r paste(sim, collapse = '\n')`
## Rebuild Networks
```{r rebuild, results='hide', message=FALSE, echo=FALSE, cache=TRUE}
rebuild <- knit_child("rebuild/rebuildNetworks.Rmd", eval=TRUE)
```
`r paste(rebuild, collapse = '\n')`
## Calculate Area Under the ROC Curve
```{r aucs, results='hide', message=FALSE, echo=FALSE, cache=TRUE}
aucs <- knit_child("aucs/calcAUCs.Rmd", eval=TRUE)
```
`r paste(aucs, collapse = '\n')`
## Merge Datasets
```{r mergeDS, results='hide', message=FALSE, echo=FALSE, cache=TRUE}
mergeDS <- knit_child("dataset-merge/merge.Rmd", eval=TRUE)
```
`r paste(mergeDS, collapse = '\n')`
## Test Bootstrapping
```{r bootstrap, results='hide', message=FALSE, echo=FALSE, cache=TRUE}
boots <- knit_child("bootstrap/bootstrap.Rmd", eval=TRUE)
```
`r paste(boots, collapse = '\n')`
Copyright ©2012-2013, The University of Texas Southwestern Medical Center. All rights reserved.