Files
Matplotlib-Style/yii_test.py
Yael-II 3f1fd94110 update
2024-12-06 03:04:23 +01:00

19 lines
236 B
Python

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()