# Mathober2023_Regression

# RegMixing

For the 18th Prompt Of Mathober: ***Regression***, **RegMixing** uses plotted dots in Python and shows their regression lines and how they intersect/correlate with each other.

## Poem

```ocaml
What is the correlation?
Where is it in this equation?
Are the dots communicating?
Or is the confusion elevating
```

## Video

<iframe width="560" height="315" src="https://www.youtube.com/embed/Pw-AnFgdlTA?si=kaAfDcPO_DKG2HJK"></iframe>

## Python Code

```python
import matplotlib.pyplot as plt
from pylab import randn

import seaborn as sns


X = randn(350)
Y = randn(350)

sns.regplot(X, Y, ci=None, color = 'black')

plt.scatter(X,Y, color='orange')
```
