EasyPlotLib 0.2.1__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/figsizes_set.py +4 -1
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib.egg-info/PKG-INFO +8 -1
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib.egg-info/SOURCES.txt +2 -1
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/PKG-INFO +8 -1
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/README.md +7 -0
- easyplotlib-0.2.3/tests/test_subplot_labels.py +28 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/__init__.py +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/cartopy_helper.py +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/export.py +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreadventor-bold.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreadventor-bolditalic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreadventor-italic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreadventor-regular.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyrechorus-mediumitalic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyrecursor-bold.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyrecursor-bolditalic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyrecursor-italic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyrecursor-regular.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreheros-bold.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreheros-bolditalic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreheros-italic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreheros-regular.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreschola-bold.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreschola-bolditalic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreschola-italic.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/fonts/texgyreschola-regular.ttf +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/helpers.py +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/palettes.py +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib/styles/nature.mplstyle +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib.egg-info/dependency_links.txt +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/EasyPlotLib.egg-info/top_level.txt +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/setup.cfg +0 -0
- {easyplotlib-0.2.1 → easyplotlib-0.2.3}/setup.py +0 -0
|
@@ -87,7 +87,10 @@ def subplot_labels(
|
|
|
87
87
|
xycoords: str = "axes fraction",
|
|
88
88
|
xytext: Tuple[float, float] = (+0.5, +1),
|
|
89
89
|
textcoords: str = "offset fontsize",
|
|
90
|
-
|
|
90
|
+
# Journals (Nature/Science/Cell) set panel letters a, b, c to 8 pt bold —
|
|
91
|
+
# the one figure element allowed to exceed the 5-7 pt body text. Default to
|
|
92
|
+
# 8 pt rather than "medium" (= body size), which made labels too small.
|
|
93
|
+
fontsize: Union[str, int] = 8,
|
|
91
94
|
verticalalignment: str = "top",
|
|
92
95
|
family: str = "sans-serif",
|
|
93
96
|
weight: str = "bold",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: EasyPlotLib
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A simple plotting library
|
|
5
5
|
Home-page: https://github.com/yourusername/EasyPlotLib
|
|
6
6
|
Author: HanYuyang
|
|
@@ -95,6 +95,13 @@ draw from it):
|
|
|
95
95
|
`COLORMAPS` — sequential for magnitude, diverging for signed values.
|
|
96
96
|
- **Microscopy** → `imaging` accents (cyan/magenta) on a black background.
|
|
97
97
|
|
|
98
|
+
## Examples
|
|
99
|
+
|
|
100
|
+
[`examples/README.md`](examples/README.md) is an index of all worked examples
|
|
101
|
+
(chart gallery, cartopy/China maps, WRF nested-domain maps) — match your task to
|
|
102
|
+
a row and adapt that file rather than starting from scratch. Geoscience map
|
|
103
|
+
helpers and the WRF study-area figure live there too.
|
|
104
|
+
|
|
98
105
|
## Chart-type gallery
|
|
99
106
|
`examples/gallery.py` renders one publication-styled panel per common archetype.
|
|
100
107
|
Every panel sources its colors from the abstracted API above, so a method keeps
|
|
@@ -27,4 +27,5 @@ EasyPlotLib/fonts/texgyreschola-bold.ttf
|
|
|
27
27
|
EasyPlotLib/fonts/texgyreschola-bolditalic.ttf
|
|
28
28
|
EasyPlotLib/fonts/texgyreschola-italic.ttf
|
|
29
29
|
EasyPlotLib/fonts/texgyreschola-regular.ttf
|
|
30
|
-
EasyPlotLib/styles/nature.mplstyle
|
|
30
|
+
EasyPlotLib/styles/nature.mplstyle
|
|
31
|
+
tests/test_subplot_labels.py
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: EasyPlotLib
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A simple plotting library
|
|
5
5
|
Home-page: https://github.com/yourusername/EasyPlotLib
|
|
6
6
|
Author: HanYuyang
|
|
@@ -95,6 +95,13 @@ draw from it):
|
|
|
95
95
|
`COLORMAPS` — sequential for magnitude, diverging for signed values.
|
|
96
96
|
- **Microscopy** → `imaging` accents (cyan/magenta) on a black background.
|
|
97
97
|
|
|
98
|
+
## Examples
|
|
99
|
+
|
|
100
|
+
[`examples/README.md`](examples/README.md) is an index of all worked examples
|
|
101
|
+
(chart gallery, cartopy/China maps, WRF nested-domain maps) — match your task to
|
|
102
|
+
a row and adapt that file rather than starting from scratch. Geoscience map
|
|
103
|
+
helpers and the WRF study-area figure live there too.
|
|
104
|
+
|
|
98
105
|
## Chart-type gallery
|
|
99
106
|
`examples/gallery.py` renders one publication-styled panel per common archetype.
|
|
100
107
|
Every panel sources its colors from the abstracted API above, so a method keeps
|
|
@@ -75,6 +75,13 @@ draw from it):
|
|
|
75
75
|
`COLORMAPS` — sequential for magnitude, diverging for signed values.
|
|
76
76
|
- **Microscopy** → `imaging` accents (cyan/magenta) on a black background.
|
|
77
77
|
|
|
78
|
+
## Examples
|
|
79
|
+
|
|
80
|
+
[`examples/README.md`](examples/README.md) is an index of all worked examples
|
|
81
|
+
(chart gallery, cartopy/China maps, WRF nested-domain maps) — match your task to
|
|
82
|
+
a row and adapt that file rather than starting from scratch. Geoscience map
|
|
83
|
+
helpers and the WRF study-area figure live there too.
|
|
84
|
+
|
|
78
85
|
## Chart-type gallery
|
|
79
86
|
`examples/gallery.py` renders one publication-styled panel per common archetype.
|
|
80
87
|
Every panel sources its colors from the abstracted API above, so a method keeps
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""Visual check that panel labels (a, b, c …) render at the 8 pt bold default."""
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
|
|
5
|
+
import numpy as np
|
|
6
|
+
import matplotlib.pyplot as plt
|
|
7
|
+
|
|
8
|
+
import EasyPlotLib as epl
|
|
9
|
+
|
|
10
|
+
HERE = os.path.dirname(os.path.abspath(__file__))
|
|
11
|
+
|
|
12
|
+
epl.journal_style("nat2", palette="nature", nrows=2, ncols=2)
|
|
13
|
+
|
|
14
|
+
x = np.linspace(0, 10, 100)
|
|
15
|
+
fig, axs = plt.subplots(2, 2)
|
|
16
|
+
for n, ax in enumerate(axs.flatten()):
|
|
17
|
+
ax.plot(x, np.sin(x + n))
|
|
18
|
+
ax.set_xlabel("x axis (units)")
|
|
19
|
+
ax.set_ylabel("y axis (units)")
|
|
20
|
+
ax.annotate(**epl.subplot_labels(n, "a")) # 8 pt bold default
|
|
21
|
+
|
|
22
|
+
d = epl.subplot_labels(0, "a")
|
|
23
|
+
print("subplot_labels fontsize ->", d["fontsize"], "| weight ->", d["weight"])
|
|
24
|
+
print("base font.size (rc) ->", plt.rcParams["font.size"])
|
|
25
|
+
|
|
26
|
+
out = os.path.join(HERE, "test_subplot_labels.png")
|
|
27
|
+
fig.savefig(out, dpi=300)
|
|
28
|
+
print("saved", out)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|