Skip to content

Commit

Permalink
fix: examples arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
AzulGarza committed Oct 5, 2022
1 parent 4d997be commit 7b19884
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/examples/AustralianDomesticTourism-Intervals.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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])"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/examples/AustralianDomesticTourism.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/examples/AustralianPrisonPopulation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/examples/TourismSmall.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
]
},
{
Expand Down

0 comments on commit 7b19884

Please sign in to comment.