-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.Rmd
66 lines (43 loc) · 1.1 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
65
66
---
title: "Reproducible Analytical Pipelines Demo"
date: "28 November 2016"
output:
html_document: default
word_document: default
---
# Government Digital Service:
## Better Use of Data Team
**Date**: August 2016
**Contact**: [email protected]
```{r setup, echo=FALSE, include=FALSE, error=FALSE, echo=FALSE}
# Note that this .Renviron should be run prior to compilation.
knitr::opts_chunk$set(
warning = FALSE,
message = FALSE,
echo = FALSE,
cache = FALSE
)
library(dplyr)
library(knitr)
# May need to install this first:
devtools::install_github('ukgovdatascience/eesectors')
library(eesectors)
```
```{r introduction, child='01-introduction.Rmd'}
```
```{r key_findings, child='02-key-findings.Rmd'}
```
```{r GVA, child='03-GVA.Rmd'}
```
```{r exports-imports, child='04-exports-imports.Rmd'}
```
```{r enterprises, child='05-enterprises.Rmd'}
```
```{r summary, child='06-summary.Rmd'}
```
```{r annexA, child='07-annexA.Rmd'}
```
```{r save_repro_log}
write(.libPaths(), file = '.libpaths')
capture.output(sessionInfo(), file = '.sessioninfo')
```