You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Note:** This package is currently in development and may not work as expected. Please file bug reports as issues in this repo, and we will do our best to address them quickly.
80
+
Epipredict is a framework for building transformation and forecasting pipelines
81
+
for epidemiological and other panel time-series datasets.
82
+
In addition to tools for building forecasting pipelines, it contains a number of
83
+
"canned" forecasters meant to run with little modification as an easy way to get
84
+
started forecasting.
85
+
86
+
It is designed to work well with
87
+
[`epiprocess`](https://cmu-delphi.github.io/epiprocess/), a utility for handling
88
+
various time series and geographic processing tools in an epidemiological
89
+
context.
90
+
Both of the packages are meant to work well with the panel data provided by
The documentation for the stable version is at <https://cmu-delphi.github.io/epipredict>, while the development version is at <https://cmu-delphi.github.io/epipredict/dev>.
64
109
65
-
## Documentation
66
110
67
-
You can view documentation for the `main` branch at <https://cmu-delphi.github.io/epipredict>.
111
+
## Motivating example
68
112
69
-
## Goals for `epipredict`
113
+
To demonstrate the kind of forecast epipredict can make, say we're predicting COVID deaths per 100k for each state on
114
+
```{r fc_date}
115
+
forecast_date <- as.Date("2021-08-01")
116
+
```
117
+
Below the fold, we construct this dataset as an `epiprocess::epi_df` from JHU data.
70
118
71
119
<details>
72
120
<summary> Creating the dataset using `{epidatr}` and `{epiprocess}` </summary>
@@ -182,16 +230,16 @@ To make a forecast, we will use a "canned" simple auto-regressive forecaster to
182
230
[^3]: lagged by 3 in this context meaning using the value from 3 days ago.
0 commit comments