-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
64 lines (50 loc) · 1.76 KB
/
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
\documentclass[11pt]{report}
\usepackage[letterpaper, portrait, margin=1in]{geometry}
\usepackage{amsmath, dsfont, amsthm, caption, physics, bm}
\usepackage{breqn}
\usepackage{enumitem}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lhead{Darshan Patel}
\rhead{Applied Linear Statistical Models}
\renewcommand{\footrulewidth}{0.4pt}
\cfoot{\thepage}
\newcommand{\Xbar}{\overline{X}}
\newcommand{\Ybar}{\overline{Y}}
\newcommand{\mean}[1]{\overline{#1}}
\newcommand{\expe}[1]{\mathrm{E}\left[ #1 \right]}
\renewcommand{\var}[1]{\mathrm{Var}\left[ #1 \right]}
\newcommand{\cov}[2]{\mathrm{Cov}\left[ #1,~#2\right]}
\renewcommand{\bar}[1]{\overline{#1}}
\newcommand{\sig}[1]{\sigma \left[ #1 \right] }
\newcommand{\sd}[1]{s \left[ #1 \right] }
\newcommand{\corr}[2]{\rho[#1, #2]}
\newcommand{\eps}{\varepsilon}
\newcommand{\zdist}[1]{z_{#1}}
\newcommand{\tdist}[2]{t_{#1, #2}}
\newcommand{\chidist}[1]{\chi^2_{#1}}
\newcommand{\Fdist}[2]{F_{#1, #2}}
\newcommand{\prob}[1]{\mathds{P} \left( #1 \right)}
\newcommand{\cprob}[2]{\mathds{P}\left( #1 ~!~ #2 \right)}
\newcommand{\hyptest}[2]{ $$ \begin{aligned} H_0: ~#1 \\ H_A: ~ #2 \end{aligned} $$ }
\newcommand{\mtx}[1]{\mathbf{#1}}
\renewcommand{\matrix}[1]{ \begin{bmatrix} #1 \end{bmatrix}}
\newcommand{\mtxT}[1]{\mtx{#1}'}
\newcommand{\Imtx}{\mtx{I}}
\newcommand{\mtxInv}[1]{\mtx{#1}^{-1}}
\newcommand{\matrixInv}[2]{\matrix{#1}^{#2}}
\begin{document}
\title{Applied Linear Statistical Models \\ Outline}
\author{Darshan Patel}
\maketitle
\tableofcontents
\chapter{Simple Linear Regression}
\input{partOne.tex}
\end{document}
\chapter{Multiple Linear Regression}
\chapter{Nonlinear Regression}
\chapter{Design and Analysis of Single-Factor Studies}
\chapter{Multi-Factor Studies}
\chapter{Specialized Study Designs}
\end{document}