get_doubling_time#
- class get_doubling_time(sim, series=None, interval=None, start_day=None, end_day=None, moving_window=None, exp_approx=False, max_doubling_time=100, eps=0.001, verbose=None)[source]#
Alternate method to calculate doubling time (one is already implemented in the sim object).
Examples:
hpv.get_doubling_time(sim, interval=[3,30]) # returns the doubling time over the given interval (single float) hpv.get_doubling_time(sim, interval=[3,30], moving_window=3) # returns doubling times calculated over moving windows (array)