-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
66 lines (37 loc) · 989 Bytes
/
main.tex
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
\documentclass[12pt,oneside]{book}
\usepackage[utf8]{inputenc}
\usepackage[colorlinks=true,urlcolor=blue]{hyperref}
\usepackage{amsmath,amssymb}
\usepackage{helvet}
\usepackage{natbib}
\usepackage[margin=1in]{geometry}
\renewcommand{\familydefault}{\sfdefault}
\input{definitions}
\title{Advanced linear models for data science}
\author{Brian Caffo}
\begin{document}
\maketitle
\tableofcontents
\frontmatter
\input{preface.tex}
\mainmatter
\input{00_introduction.tex}
\input{01_background.tex}
\input{02_single_parameter.tex}
\input{03_linear_regression.tex}
\input{04_least_squares.tex}
\input{05_examples.tex}
\input{06_bases.tex}
\input{07_residuals.tex}
\input{08_expectations.tex}
\input{09_normal.tex}
\input{10_distro.tex}
\input{11_residuals_diagnostics.tex}
\input{12_underover.tex}
\input{13_penalties.tex}
\input{14_asymptotics.tex}
\input{15_mixed_models.tex}
\input{16_bayes.tex}
\bibliographystyle{apalike}
\bibliography{database}
\end{document}