forked from TuomoNieminen/IODS-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.Rmd
More file actions
92 lines (69 loc) · 2.31 KB
/
index.Rmd
File metadata and controls
92 lines (69 loc) · 2.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
title: "Open Data Science"
author: "Paul Lassmann Klee"
date: "`r Sys.Date()`"
output:
prettydoc::html_pretty:
theme: cayman
highlight: github
vignette: >
%\VignetteIndexEntry{Vignette Title}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
***
```{r child = "chapter1.Rmd"}
```
***
```{r child = "chapter2.Rmd"}
```
***
```{r child = "chapter4.Rmd"}
```
***
```{r child = "Chapter6.Rmd"}
```
***
<!-- ## Styles -->
<!-- Currently `html_pretty` supports three page themes, `cayman` (the default), -->
<!-- `tactile`, and `architect`. And there are also two syntax highlight styles: -->
<!-- `github` to mimic the syntax highlight on Github, and `vignette` that is used by -->
<!-- `html_vignette`. If no highlight parameter is given, the default style created -->
<!-- by Pandoc will be used. -->
<!-- The theme and highlight styles can be given in the document metadata, -->
<!-- for example: -->
<!-- ```yaml -->
<!-- output: -->
<!-- prettydoc::html_pretty: -->
<!-- theme: cayman -->
<!-- highlight: github -->
<!-- ``` -->
<!-- ## Happy Knitting! -->
<!-- Feel free to use the `knitr` infrastructure with dozens of tunable options in -->
<!-- your package vignette. -->
<!-- ```{r fig.width=6, fig.height=6, fig.align='center'} -->
<!-- set.seed(123) -->
<!-- n <- 1000 -->
<!-- x1 <- matrix(rnorm(n), ncol = 2) -->
<!-- x2 <- matrix(rnorm(n, mean = 3, sd = 1.5), ncol = 2) -->
<!-- x <- rbind(x1, x2) -->
<!-- head(x) -->
<!-- smoothScatter(x, xlab = "x1", ylab = "x2") -->
<!-- ``` -->
<!-- You can also include code snippets of languages other than R, but note that -->
<!-- the block header has no curly brackets around the language name. -->
<!-- ```cpp -->
<!-- // [[Rcpp::export]] -->
<!-- NumericVector timesTwo(NumericVector x) { -->
<!-- return x * 2; -->
<!-- } -->
<!-- ``` -->
<!-- You can write math expressions, e.g. $Y = X\beta + \epsilon$, -->
<!-- footnotes^[A footnote here.], and tables, e.g. using `knitr::kable()`. -->
<!-- ```{r, echo=FALSE, results='asis'} -->
<!-- knitr::kable(head(iris, 10)) -->
<!-- ``` -->
<!-- ## Stay Tuned -->
<!-- Please visit the [development page](http://github.com/yixuan/prettydoc/) of the -->
<!-- `prettydoc` package for latest updates and news. Comments, bug reports and -->
<!-- pull requests are always welcome. -->