You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I am getting the following warning (nice that this is so transparent btw):
Warning message:
The future dataset is incomplete, incomplete out-of-sample data will be treated as missing.
104 observations are missing between 2019-01-01 and 2019-12-23
However this presents a problem in the sense that most of the time series they do not have equal length. For processing my data as was using:
ts_tibble<- as_tsibble(df,
key=c(a,b,c), index=snsr_dt)
print("Filling gaps for not breaking groups")
ts_tibble<-ts_tibble %>% fill_gaps()
Which definitely helped for the training of multiple models but should I understand that with the current API I need to align my timeseries to the same end_date to be able to assess the accuracy? Is there any way of making this more consistent?
BR
/Edgar
The text was updated successfully, but these errors were encountered:
Dear colleagues,
I have trained a forecasting model for a grouped dataframe as follows:
And I asses the accuracy as follows:
And I am getting the following warning (nice that this is so transparent btw):
However this presents a problem in the sense that most of the time series they do not have equal length. For processing my data as was using:
Which definitely helped for the training of multiple models but should I understand that with the current API I need to align my timeseries to the same end_date to be able to assess the accuracy? Is there any way of making this more consistent?
BR
/Edgar
The text was updated successfully, but these errors were encountered: