diff --git a/scripts/pmt_rates.py b/scripts/pmt_rates.py
index cbf8cd931fe9cb9a24eda8d6ef8b0d5ce14ba176..9ec57fffff583855c666480a59952639f58d4164 100755
--- a/scripts/pmt_rates.py
+++ b/scripts/pmt_rates.py
@@ -108,6 +108,7 @@ class PMTRates(kp.Module):
         m = self.rates_matrix
         m[m > self.highest_rate] = self.highest_rate
         m[m < self.lowest_rate] = self.lowest_rate
+        m = m / self.highest_rate
         fig, ax = plt.subplots(figsize=(10, 8))
         ax.imshow(m, origin='lower', interpolation='none')
         ax.set_title("Mean PMT Rates (Monitoring Channel) for DetID-{} DU-{} "