From 1cc09ab4e09fdc6dd1a1a31b539ed0600892e62e Mon Sep 17 00:00:00 2001 From: markus Date: Thu, 11 Feb 2021 12:44:40 +0100 Subject: [PATCH] call some functions --- cara/montecarlo.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index 77ddca55..9de11e9f 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -655,3 +655,10 @@ exposure_models = [MCExposureModel( ) ) for e in (False, True)] + +plot_pi_vs_viral_load(exposure_models[0]) +for model in exposure_models: + present_model(model.concentration_model) + plt.hist(model.infection_probability(), bins=200) + plt.xlabel('Percentage probability of infection') + plt.show()