From 7b1988416b4e489ede3fc5735e6db5aff86e23cd Mon Sep 17 00:00:00 2001 From: FedericoGarza Date: Tue, 4 Oct 2022 21:47:11 -0500 Subject: [PATCH] fix: examples arguments --- .../AustralianDomesticTourism-Bootstraped-Intervals.ipynb | 3 ++- nbs/examples/AustralianDomesticTourism-Intervals.ipynb | 2 +- nbs/examples/AustralianDomesticTourism.ipynb | 2 +- nbs/examples/AustralianPrisonPopulation.ipynb | 2 +- nbs/examples/TourismSmall.ipynb | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/nbs/examples/AustralianDomesticTourism-Bootstraped-Intervals.ipynb b/nbs/examples/AustralianDomesticTourism-Bootstraped-Intervals.ipynb index c23a36ac..a9f75e48 100644 --- a/nbs/examples/AustralianDomesticTourism-Bootstraped-Intervals.ipynb +++ b/nbs/examples/AustralianDomesticTourism-Bootstraped-Intervals.ipynb @@ -606,7 +606,8 @@ " MinTrace(method='ols')\n", "]\n", "hrec = HierarchicalReconciliation(reconcilers=reconcilers)\n", - "Y_rec_df = hrec.reconcile(Y_hat_df, Y_fitted_df, S, tags, level=[80, 90], bootstrap=True)" + "Y_rec_df = hrec.reconcile(Y_hat_df=Y_hat_df, Y_df=Y_fitted_df, S=S, \n", + " tags=tags, level=[80, 90], bootstrap=True)" ] }, { diff --git a/nbs/examples/AustralianDomesticTourism-Intervals.ipynb b/nbs/examples/AustralianDomesticTourism-Intervals.ipynb index 66027716..216810b5 100644 --- a/nbs/examples/AustralianDomesticTourism-Intervals.ipynb +++ b/nbs/examples/AustralianDomesticTourism-Intervals.ipynb @@ -606,7 +606,7 @@ " MinTrace(method='ols')\n", "]\n", "hrec = HierarchicalReconciliation(reconcilers=reconcilers)\n", - "Y_rec_df = hrec.reconcile(Y_hat_df, Y_fitted_df, S, tags, level=[80, 90])" + "Y_rec_df = hrec.reconcile(Y_hat_df=Y_hat_df, Y_df=Y_fitted_df, S=S, tags=tags, level=[80, 90])" ] }, { diff --git a/nbs/examples/AustralianDomesticTourism.ipynb b/nbs/examples/AustralianDomesticTourism.ipynb index 6d72cd93..5a07b60e 100644 --- a/nbs/examples/AustralianDomesticTourism.ipynb +++ b/nbs/examples/AustralianDomesticTourism.ipynb @@ -547,7 +547,7 @@ " MinTrace(method='ols')\n", "]\n", "hrec = HierarchicalReconciliation(reconcilers=reconcilers)\n", - "Y_rec_df = hrec.reconcile(Y_hat_df, Y_fitted_df, S, tags)" + "Y_rec_df = hrec.reconcile(Y_hat_df=Y_hat_df, Y_df=Y_fitted_df, S=S, tags=tags)" ] }, { diff --git a/nbs/examples/AustralianPrisonPopulation.ipynb b/nbs/examples/AustralianPrisonPopulation.ipynb index 3ac03d37..f615a68e 100644 --- a/nbs/examples/AustralianPrisonPopulation.ipynb +++ b/nbs/examples/AustralianPrisonPopulation.ipynb @@ -525,7 +525,7 @@ " MinTrace(method='mint_shrink')\n", "]\n", "hrec = HierarchicalReconciliation(reconcilers=reconcilers)\n", - "Y_rec_df = hrec.reconcile(Y_hat_df, Y_fitted_df, S, tags)" + "Y_rec_df = hrec.reconcile(Y_hat_df=Y_hat_df, Y_df=Y_fitted_df, S=S, tags=tags)" ] }, { diff --git a/nbs/examples/TourismSmall.ipynb b/nbs/examples/TourismSmall.ipynb index 7f399b64..c58ed4e5 100644 --- a/nbs/examples/TourismSmall.ipynb +++ b/nbs/examples/TourismSmall.ipynb @@ -392,7 +392,7 @@ " top_down_method='forecast_proportions')\n", "]\n", "hrec = HierarchicalReconciliation(reconcilers=reconcilers)\n", - "Y_rec_df = hrec.reconcile(Y_hat_df, Y_train_df, S, tags)" + "Y_rec_df = hrec.reconcile(Y_hat_df=Y_hat_df, Y_df=Y_train_df, S=S, tags=tags)" ] }, {