summaryrefslogtreecommitdiff
path: root/tutorials/module_4/linear_regression.md
blob: b21415be29c3e29d1ce4a5d6f545af38e9e54d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Linear Regression



## Statical tools
Numpy comes with some useful statistical tools that we can use to analyze our data.

### Mean
The mean is the average of a set of numbers. It is calculated by summing all the numbers and dividing by the count of numbers.

```python
import numpy as np

mean = np.mean([1, 2, 3, 4, 5])
median = np.median([1, 2, 3, 4, 5])
std = np.std([1, 2, 3, 4, 5])
variance = np.var([1, 2, 3, 4, 5])
```