mirror of
https://codeberg.org/Yael-II/Matplotlib-Style.git
synced 2026-03-14 21:36:28 +01:00
update
This commit is contained in:
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -69,7 +69,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
@@ -68,7 +68,7 @@ savefig.pad_inches: 0
|
||||
path.simplify: True
|
||||
|
||||
### Cycler
|
||||
axes.prop_cycle: cycler(color=['06518E', 'E8BD0F', '3B795E', '009EDB', 'ED1C24', 'C95BCF'])
|
||||
axes.prop_cycle: cycler(color=['06518E','E8BD0F','3B795E','ED1C24','C95BCF','009EDB'])
|
||||
|
||||
### Colormap
|
||||
image.cmap: cividis
|
||||
|
||||
18
yii_test.py
Normal file
18
yii_test.py
Normal 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()
|
||||
Reference in New Issue
Block a user