Skip to content

Commit

Permalink
exog fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kavya-r30 committed Mar 4, 2025
1 parent cb2ff33 commit 83aed9a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions aeon/forecasting/_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ def _fit(self, y, exog=None):
----------
y : np.ndarray
A time series on which to learn a forecaster to predict horizon ahead.
exog : np.ndarray, default =None
Optional exogenous time series data assumed to be aligned with y.
exog : np.ndarray, default=None
Optional exogenous time series data. Included for interface
compatibility but ignored in this estimator.
Returns
-------
Expand Down Expand Up @@ -85,8 +86,9 @@ def _predict(self, y=None, exog=None):
y : np.ndarray, default = None
A time series to predict the next horizon value for. If None,
predict the next horizon value after series seen in fit.
exog : np.ndarray, default = None
Optional exogenous time series data assumed to be aligned with y
exog : np.ndarray, default=None
Optional exogenous time series data. Included for interface
compatibility but ignored in this estimator.
Returns
-------
Expand All @@ -106,8 +108,9 @@ def _forecast(self, y, exog=None):
----------
y : np.ndarray
A time series to predict the next horizon value for.
exog : np.ndarray, default = None
Optional exogenous time series data assumed to be aligned with y
exog : np.ndarray, default=None
Optional exogenous time series data. Included for interface
compatibility but ignored in this estimator.
Returns
-------
Expand Down

0 comments on commit 83aed9a

Please sign in to comment.