lisphilar / covid19-sir

CovsirPhy: Python library for COVID-19 analysis with phase-dependent SIR-derived ODE models.
https://lisphilar.github.io/covid19-sir/
Apache License 2.0
110 stars 44 forks source link

Title of figure for Scenario.history(target="Rt") should be "Reproduction number", not "Rt" #248

Closed lisphilar closed 4 years ago

lisphilar commented 4 years ago

Summary

Title of figure for Scenario.history(target="Rt") should be "Reproduction number over time", not "Rt over time".

(Optional) Related classes

Codes and outputs:

import covsirphy as cs
# Dataset preparation
data_loader = cs.DataLoader("input")
jhu_data = data_loader.jhu()
population_data = data_loader.population()
# Scenario analysis
snl = cs.Scenario(jhu_data, population_data, "Japan")
snl.trend()
snl.estimate(cs.SIRF)
snl.history(target="Rt")

Environment

lisphilar commented 4 years ago

This will be included in stable version 2.9.0 and developent version 2.9.3-beta