From 2380d1b397a84abce90ee413427d4187cf459f0f Mon Sep 17 00:00:00 2001 From: markus Date: Thu, 11 Feb 2021 12:47:22 +0100 Subject: [PATCH] fix x-range of viral load histogram --- cara/montecarlo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index 9de11e9f..a742448c 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -454,6 +454,7 @@ def present_model(model: MCConcentrationModel, bins: int = 200) -> None: axs[0, 0].set_title('Viral load') axs[0, 0].set_xlabel('Viral load [$log10(RNA\,copies\;mL^{-1}$)]') + axs[0, 0].set_xlim(2, 11.5) ds = np.linspace(0.1, 15, 2000) unmasked = [model.infected._concentration_distribution_without_mask()(d) for d in ds]