A Temporary Test Notebook#
import numpy as np
import matplotlib.pyplot as plt
x = np.random.randn(100)
y = np.random.randn(100) + x
plt.scatter(x, y)
<matplotlib.collections.PathCollection at 0x7fb7eed61040>

import numpy as np
import matplotlib.pyplot as plt
x = np.random.randn(100)
y = np.random.randn(100) + x
plt.scatter(x, y)
<matplotlib.collections.PathCollection at 0x7fb7eed61040>