This commit is contained in:
Yael-II
2024-12-06 03:04:23 +01:00
parent 7e0af51ae1
commit 3f1fd94110
10 changed files with 26 additions and 8 deletions

18
yii_test.py Normal file
View File

@@ -0,0 +1,18 @@
import matplotlib.pyplot as plt
def test_colors():
x = range(10)
y = [1]*10
fig, ax = plt.subplots(1)
for i in x:
ax.scatter(x[i],y[i], s=100)
test_colors()
plt.style.use("YII_1")
test_colors()
plt.show()