What is the relationship between the arg "periods" in make_future_dataframe() and "n_forecasts" in model #943
Replies: 5 comments 1 reply
-
Did you find out an explaination to this? |
Beta Was this translation helpful? Give feedback.
-
I have the same question... |
Beta Was this translation helpful? Give feedback.
-
You guys also need to specify how many historic predictions you are going to use. My code for this looks like: FYI: n_historic_predictions >= n_lags. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Totally agree with you, the documentation give the focus on the possible plots but the way to manage a long term prediction is not clear. |
Beta Was this translation helpful? Give feedback.
-
I created a model
m
train on daily data from Jan-Jun20.I am trying to use
m.make_future_dataframe()
to forecast 3 months ahead (Jul-Sep20). However, passing in different value for theperiods
argument does not change the number of future forecast - I'm only getting the date 2020-07-01 regardless. Am I missing out something here :( ?Adding in
n_forecasts=30
to the model gives me the 3-monthsfuture
dataframe (Jul-Sep20), but am still struggling to wrap my head around the Prediction Collection concept of yhat(s) here, and are they even related?Beta Was this translation helpful? Give feedback.
All reactions