We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ValueError was raised when adding phases manually to fully-complemented data. Data ("cook county.csv") was provided by @AnujTiwari with #851.
ValueError
import covsirphy as cs country_data = cs.CountryData("input/cook county.csv", country="Cook") country_data.set_variables( date="date", confirmed="confirmed", recovered="recovered", fatal="fatal") country_data.register_total() country_data.cleaned() jhu_data_cook = cs.JHUData.from_dataframe(country_data.cleaned()) population_data_cook = cs.PopulationData() population_data_cook.update(5150233, country="Cook") snl = cs.Scenario(country="Cook") snl.register(jhu_data_cook, population_data_cook) snl.records() snl.trend(algo="Pelt-rbf").summary() snl.estimate(cs.SIRF) snl.clear(include_past=True).summary() snl.add(end_date="28Apr2020")
ValueError: @start must be the same as/over 15Mar2020, but 27Feb2020 was applied.
The text was updated successfully, but these errors were encountered:
fix: ValueError, #878
e71885e
Reopened with #851. https://gist.github.com/lisphilar/1063a31147d50dff252e682673b1e600
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Summary
ValueError
was raised when adding phases manually to fully-complemented data.Data ("cook county.csv") was provided by @AnujTiwari with #851.
Codes
Outputs
ValueError: @start must be the same as/over 15Mar2020, but 27Feb2020 was applied.
Environment
The text was updated successfully, but these errors were encountered: