call some functions

This commit is contained in:
markus 2021-02-11 12:44:40 +01:00
parent d78a46bc0b
commit 1cc09ab4e0

View file

@ -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()