# Mathober2023_Weak

# LikelyNot

For the 6th Prompt Of Mathober: ***Weak***,  ***LikelyNot*** is coded in **Python.** It contains multiple scatter plots that are ***Weak*** in Correlation and overlays them to reinforce that

Aided by **LiveCodeLab**  Sounds

## 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/l8YnOrAV_t0?si=ERy3QKgR3BDwDF8L"></iframe>

## Python Code

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


X = randn(15)
Y = randn(15)
plt.scatter(X,Y, color='#anycolor')
```
