From a5fc97db0c257cf3e38485fe56276c8827432c03 Mon Sep 17 00:00:00 2001 From: Thomas Gessey-Jones Date: Wed, 17 Jan 2024 15:16:23 +0000 Subject: [PATCH] Correct the Temperature Units in plotter.py (#27) * Correct temperature units in plotter.py * Version bump --- README.rst | 2 +- globalemu/plotter.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 9eb7a44..04d4a2c 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ Introduction :globalemu: Robust Global 21-cm Signal Emulation :Author: Harry Thomas Jones Bevins -:Version: 1.8.1 +:Version: 1.8.2 :Homepage: https://github.com/htjb/globalemu :Documentation: https://globalemu.readthedocs.io/ diff --git a/globalemu/plotter.py b/globalemu/plotter.py index 4012d35..0d9dc91 100644 --- a/globalemu/plotter.py +++ b/globalemu/plotter.py @@ -198,7 +198,7 @@ def __init__(self, parameters, labels, loss_type, if self.xHI is False: for i in range(len(axes)): - axes[i].set_ylabel(r'$T_{21}$ [mk]') + axes[i].set_ylabel(r'$T_{21}$ [mK]') else: for i in range(len(axes)): axes[i].set_ylabel(r'$x_{HI}$')