-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from IDSIA/TD
Mixed-type reconciliation algorithms
- Loading branch information
Showing
65 changed files
with
3,938 additions
and
814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
^doc$ | ||
^Meta$ | ||
^data-raw$ | ||
^\./tests/testthat/dataForTests/generate_weeklyTestData\.R$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: bayesRecon | ||
Type: Package | ||
Date: 2023-12-19 | ||
Date: 2024-05-29 | ||
Title: Probabilistic Reconciliation via Conditioning | ||
Version: 0.2.0 | ||
Version: 0.3.0 | ||
Authors@R: c(person(given = "Dario", | ||
family = "Azzimonti", | ||
role = c("aut","cre"), | ||
|
@@ -24,7 +24,15 @@ Authors@R: c(person(given = "Dario", | |
email = "[email protected]", | ||
comment = c(ORCID = "0000-0002-1541-8384"))) | ||
Maintainer: Dario Azzimonti <[email protected]> | ||
Description: Provides methods for probabilistic reconciliation of hierarchical forecasts of time series. The available methods include analytical Gaussian reconciliation (Corani et al., 2021) <doi:10.1007/978-3-030-67664-3_13>, MCMC reconciliation of count time series (Corani et al., 2022) <doi:10.48550/arXiv.2207.09322>, Bottom-Up Importance Sampling (Zambon et al., 2022) <doi:10.48550/arXiv.2210.02286>. | ||
Description: Provides methods for probabilistic reconciliation of hierarchical forecasts of time series. | ||
The available methods include analytical Gaussian reconciliation (Corani et al., 2021) | ||
<doi:10.1007/978-3-030-67664-3_13>, | ||
MCMC reconciliation of count time series (Corani et al., 2024) | ||
<doi:10.1016/j.ijforecast.2023.04.003>, | ||
Bottom-Up Importance Sampling (Zambon et al., 2024) | ||
<doi:10.1007/s11222-023-10343-y>, | ||
methods for the reconciliation of mixed hierarchies (Mix-Cond and TD-cond) | ||
(Zambon et al., 2024. The 40th Conference on Uncertainty in Artificial Intelligence, accepted). | ||
License: LGPL (>= 3) | ||
Depends: R (>= 4.1.0) | ||
Imports: | ||
|
@@ -34,7 +42,7 @@ Imports: | |
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown=TRUE) | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
Suggests: | ||
knitr, | ||
rmarkdown, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(PMF.get_mean) | ||
export(PMF.get_quantile) | ||
export(PMF.get_var) | ||
export(PMF.sample) | ||
export(PMF.summary) | ||
export(get_reconc_matrices) | ||
export(reconc_BUIS) | ||
export(reconc_MCMC) | ||
export(reconc_MixCond) | ||
export(reconc_TDcond) | ||
export(reconc_gaussian) | ||
export(schaferStrimmer_cov) | ||
export(temporal_aggregation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.