|
1 | 1 | # %%
|
| 2 | +from pathlib import Path |
| 3 | + |
2 | 4 | from matplotlib import pyplot
|
3 | 5 | from scipy import stats
|
4 | 6 | import probscale # nothing else needed
|
|
11 | 13 | {"scale": {"value": "log", "base": 2}, "label": "Log. Base 2 (built-in)"},
|
12 | 14 | {"scale": {"value": "logit"}, "label": "Logit (built-in)"},
|
13 | 15 | {"scale": {"value": "prob"}, "label": "Standard Normal Probability (this package)"},
|
14 |
| - {"scale": {"value": "prob", "dist": weibull}, "label": "Weibull probability scale, c=5 (this package)"}, |
15 |
| - {"scale": {"value": "prob", "dist": beta}, "label": "Beta probability scale, α=3 & β=4 (this package)"}, |
| 16 | + { |
| 17 | + "scale": {"value": "prob", "dist": weibull}, |
| 18 | + "label": "Weibull probability scale, c=5 (this package)", |
| 19 | + }, |
| 20 | + { |
| 21 | + "scale": {"value": "prob", "dist": beta}, |
| 22 | + "label": "Beta probability scale, α=3 & β=4 (this package)", |
| 23 | + }, |
16 | 24 | ]
|
17 | 25 |
|
18 | 26 | N = len(scales)
|
19 |
| -fig, axes = pyplot.subplots(nrows=N, figsize=(9, N-1), constrained_layout=True) |
| 27 | +fig, axes = pyplot.subplots(nrows=N, figsize=(9, N - 1), constrained_layout=True) |
20 | 28 | for scale, ax in zip(scales, axes.flat):
|
21 | 29 | ax.set_xscale(**scale["scale"])
|
22 | 30 | ax.text(0.0, 0.1, scale["label"] + " →", transform=ax.transAxes)
|
|
26 | 34 | ax.spines.right.set_visible(False)
|
27 | 35 | ax.spines.top.set_visible(False)
|
28 | 36 |
|
29 |
| -fig.savefig("../img/example.png", dpi=300) |
| 37 | +outpath = Path(__file__).parent.joinpath("../img/example.png").resolve() |
| 38 | +fig.savefig(outpath, dpi=300) |
0 commit comments