Mathober2023_Weak

Mathober2023_Weak

Abudance is Shown but Probably Alone?

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

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

Video

Python Code

import matplotlib.pyplot as plt
from pylab import randn


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