Changelog
Source:NEWS.md
forecasttools 0.1.4
- BREAKING CHANGE: Functions to prepare hubs for scoring (
hubverse_table_with_obs()
andquantile_table_to_scorable()
) now no longer assume that forecast tables contain a single target. This will break existing scoring workflows that use truth data without a target column. It can be addressed by setting theid_cols
argumenthubverse_table_with_obs()
orquantile_table_to_scorable()
explicitly. - New function for calculating forecast horizons from target end dates:
horizons_from_target_end_dates()
- New epiweek rounding functions:
floor_mmwr_epiweek
,ceiling_mmwr_epiweek()
,floor_isoweek()
, andceiling_isoweek()
. - Smaller-than-memory
parquet
file I/O now handled viananoparquet
(previously handled viaarrow
, reducingforecasttools
package weight and installation time.
forecasttools 0.1.3
- BREAKING CHANGE:
target_end_dates_from_horizons()
andget_hubverse_table()
now work with both daily and weekly horizons. To restore functionality of existing code, add the argumenthorizon_timescale = "weeks"
to these functions.
forecasttools 0.1.2
- Adds optional epidate annotation to
daily_to_epiweekly()
- Increases testing coverage
- Fixes bug in
pull_nhsn()
so that ordering on multiple columns works as expected.
forecasttools 0.1.1
- Makes target data path configurable in
hub_to_scorable_quantiles()
- Fixes small bugs.