How do I autoregress on regressors that aren't the target? #435
Unanswered
tszumowski
asked this question in
Q&A
Replies: 1 comment
-
I can see two ways here:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I noticed the AutoRegressivePipeline autoregresses on the target variable to build out the multi-step forecast output. I have a variable that I lag alongside the target, because it is a useful regressor, but it is not something known at the time of forecast.
For example, consider the case where trying to predict a store's product sales by week. The target is
sales
. However, we may have a regressor,customer_visits
that indicates the number of times a customer walks in the store. If I am forecasting for the next 4 weeks, I do not know the values ofcustomer_visits
ahead of time. But I can forecast it alongside sales and use it to forecastsales
.Is there a way to do this? If not, is there a suggested alternative?
Beta Was this translation helpful? Give feedback.
All reactions