-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add input values / values used to summaries output data #104
Comments
I can see that "currently takes 8 weeks of data, that's only 56 new data points" means that 8 * 7 = 56. Which means there is one data point per day. So the "collection of input values" here refers to the data? I think for certain functions fit with Stan then the Are there examples of plots and model evaluations you'd want? I wonder how hard it would be to get something compatible with https://cran.r-project.org/web/packages/loo/index.html. |
Correct.
The data anomaly plots we make every week would be a good example. Right now they require pulling data from two sources to make; saving the input values in the output would mean the plots could be made from a single data source. |
https://epiforecasts.io/EpiNow2/dev/reference/estimate_infections.html returns:
So But perhaps we are not saving the whole output of |
Just checked the output variables of the summary and samples parquet files, but did not see it in there. I think we may have to manually tack it onto the summary table from the epinow2 object. |
Goal
Save the input values used in the summary dataframe for later use.
Context
The current summaries contain estimated quantities. It will be useful for later plotting (and model evaluation?) to also save the raw input values that were used. Since the model currently takes 8 weeks of data, that's only 56 new data points to include.
Suggest calling them either
input_value
orvalue_used
.Required features
_variable
: "input_value"value
: the value_lower
: either same as the value, orNA
_upper
: either same as the value, orNA
_width
: 0.5?_point
: "point"?_interval
: NA?reference_date
: the date that value is fromgeo_value
: the location of the valuemodel
:EpiNow2
disease
: the diseaseOut of scope
Anything beyond what is necessary for adding these new rows.
Related
The text was updated successfully, but these errors were encountered: