-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.Rmd
61 lines (40 loc) · 2.07 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
---
title: "R (BGU course)"
author: "Jonathan D. Rosenblatt"
date: '`r Sys.Date()`'
bibliography: bib.bib
description: Class notes for the R course at the BGU's IE&M dept.
documentclass: book
keywords: "Rstats, Statistics"
link-citations: yes
biblio-style: apalike
always_allow_html: yes
---
```{r knitr defaults, echo=FALSE}
knitr::opts_chunk$set(out.width='50%', message=FALSE, warning=FALSE, cache = TRUE)
set.seed(1)
```
# Preface
This book accompanies BGU's "R" course, at the department of Industrial Engineering and Management.
It has several purposes:
- Help me organize and document the course material.
- Help students during class so that they may focus on listening and not writing.
- Help students after class, so that they may self-study.
At its current state it is experimental.
It can thus be expected to change from time to time, and include mistakes.
I will be enormously grateful to whoever decides to share with me any mistakes found.
I am enormously grateful to Yihui Xie, who's *bookdown* R package made it possible to easily write a book which has many mathematical formulae, and R output.
I hope the reader will find this text interesting and useful.
For reproducing my results you will want to run `set.seed(1)`.
## Notation Conventions
In this text we use the following conventions:
Lower case $x$ may be a vector or a scalar, random of fixed, as implied by the context.
Upper case $A$ will stand for matrices.
Equality $=$ is an equality, and $:=$ is a definition.
Norm functions are denoted with $\Vert x \Vert$ for vector norms, and $\Vert A \Vert$ for matrix norms.
The type of norm is indicated in the subscript; e.g. $\Vert x \Vert_2$ for the Euclidean ($l_2$) norm.
Tag, $x'$ is a transpose.
The distribution of a random vector is $\sim$.
## Acknowledgements
I have consulted many people during the writing of this text.
I would like to thank [Yoav Kessler](https://kesslerlab.wordpress.com/), [Lena Novack](http://fohs.bgu.ac.il/research/profileBrief.aspx?id=VeeMVried), Efrat Vilenski, Ron Sarafian, and Liad Shekel in particular, for their valuable inputs.