diff --git a/cosmoplots/axes.py b/cosmoplots/axes.py index a830496..225931a 100644 --- a/cosmoplots/axes.py +++ b/cosmoplots/axes.py @@ -120,8 +120,8 @@ def figure_multiple_rows_columns(rows: int, columns: int, fig = plt.figure(figsize = (columns*3.37, rows*2.08277)) axes = [] labels = labels or [r"$\mathrm{{({})}}$".format(chr(97+l)) for l in range(rows*columns)] - for c in range(columns): - for r in range(rows): + for r in range(rows): + for c in range(columns): left = (0.2)/columns + c/columns bottom = (0.2)/rows + (rows-1-r)/rows # Start at the top width = 0.75/columns diff --git a/pyproject.toml b/pyproject.toml index c6b5b83..4806934 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cosmoplots" -version = "0.4.2" +version = "0.4.3" description = "Routines to get a sane default configuration for production quality plots." homepage = "https://github.com/uit-cosmo/cosmoplots" authors = ["gregordecristoforo "]