This commit is contained in:
2026-03-18 22:48:20 -07:00
commit 275199e005
312 changed files with 266738 additions and 0 deletions

13
python/personal/plt.py Normal 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()