-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.Rnw
91 lines (71 loc) · 1.96 KB
/
main.Rnw
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
\documentclass{tufte-book}
\pagenumbering{roman}
\input{input/prelude.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% ---------------------------------------------------------------
\frontmatter
\include{input/title}
\emptypage
\include{input/abstract}
\emptypage
\begin{normalsize}
\tableofcontents
\end{normalsize}
% ---------------------------------------------------------------
\mainmatter
\pagenumbering{arabic}
\chapter{Recursive partitioning}
<<introduction, child = "input/introduction.Rnw">>=
@
\chapter{Motivation}
<<problems, child = "input/motivation.Rnw">>=
@
\chapter{Recursive partitioning by conditional inference}
<<ctrees, child = "input/ctrees.Rnw">>=
@
\chapter*{Algorithm}
<<algorithm, child = "input/algorithm.Rnw">>=
@
\section{The test statistic}
<<test_statistic, child = "input/test-statistic.Rnw">>=
@
\section{Stop criteria and variable selection}
<<stop_criterion, child = "input/stop_criterion.Rnw">>=
@
\section{Splitting criteria}
<<best-split, child = "input/best-split.Rnw">>=
@
\section{Repeat}
<<repeat4, child = "input/repeat.Rnw">>=
@
\chapter{Regression example: bodyfat}
\label{chap:regression}
<<bodyfat, child = "input/bodyfat.Rnw">>=
@
\chapter{Classification example: glaucoma}
\label{chap:classification}
<<glaucoma, child = "input/glaucoma.Rnw">>=
@
%% \chapter{Other scales}
\chapter{Summary}
<<summary, child = "input/summary.Rnw">>=
@
\begin{appendix}
\chapter{appendix: Permutation tests}
\label{chap:perm}
<<appendix-permutation-tests, child = "input/appendix-permutation-test.Rnw">>=
@
\chapter{appendix: Test statistic}
\label{chap:strasser}
<<strasser_weber, child = "input/strasser-weber.Rnw">>=
@
\end{appendix}
%%\backmatter % ab hier keine Nummerierung mehr
%% \listoffigures % Abbildungsverzeichnis
\bibliographystyle{plainnat}
\nocite{*}
\bibliography{input/bibliolog}
%% \newpage
%% \listoffigures
\end{document}