-
Notifications
You must be signed in to change notification settings - Fork 151
Add implied daily growth rate #218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…rameters` class. - Adds `daily_growth_helper` function to `src/penn_chime/parameters.py` to calculate daily growth rate as a function of doubling time. - Updates `display_header` function in `src/penn_chime/presentation.py` to display initial and mitigated daily growth rates. - Adds `test_daily_growth` test to `tests/test_app.py` to test above changes Fixes #90
Set to WIP. I neglected to add tests for the |
… to include test for daily growth when halving
Added tests for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome. I checked it out and tested locally. Looks perfect.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@ecsmyth I'm pulling this out of the 1.0 release so that you can resolve the merge conflict. Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please resolve merge conflicts and we'll pull this into the next release
…rameters` class. - Adds `daily_growth_helper` function to `src/penn_chime/parameters.py` to calculate daily growth rate as a function of doubling time. - Updates `display_header` function in `src/penn_chime/presentation.py` to display initial and mitigated daily growth rates. - Adds `test_daily_growth` test to `tests/test_app.py` to test above changes Fixes #90
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current commit addresses the merge conflict. I pushed again after rebasing on develop post PR 208.
Becker's requested change is just resolving merge conflicts, which are fine, so we're gonna merge in |
daily_growth
anddaily_growth_t
instance attributes onParameters
class.daily_growth_helper
function tosrc/penn_chime/parameters.py
to calculate daily growth rate as a function of doubling time.display_header
function insrc/penn_chime/presentation.py
to display initial and mitigated daily growth rates.test_daily_growth
test totests/test_app.py
to test above changesFixes #90