This commit is contained in:
2025-07-02 00:07:49 -07:00
commit c208c6b35d
114 changed files with 71862 additions and 0 deletions

13
python/personal/plt.py Executable file
View File

@ -0,0 +1,13 @@
import numpy as np
import matplotlib.pyplot as plt
# Let's have our x values just be a count from 0 to 49.
var1 = np.arange(50)
print(var1)
# And let's randomly generate some y values!
var2 = var1 + 10*np.random.randn(50)
plt.scatter(var1,var2)
plt.show()