Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
23 views

I try to forecast time series data, namely the "outgoing_quantity". My data consists of two "ID" columns ("gtin" and "location_id"). For each combination of ...
the_economist's user avatar
2 votes
1 answer
59 views

Using skforecast, it's straightforward to perform out-of-sample predictions starting from the dates in the last_window_.index of a ForecasterRecursive object. However, I’m unable to find a clear ...
PeCaDe's user avatar
  • 478
1 vote
1 answer
50 views

I have two months daily time series data starting from 1st january 2025.The data shows high value on weekdays and dip on sat and sunday. Also weekdays of 1st two weeks of the month have high value as ...
joy_1379's user avatar
  • 521
0 votes
1 answer
65 views

The forecast package version of autolayer has this nice series argument for adding a legend to one's forecast plots. library(feasts) library(forecast) ETS <- forecast(ets(AirPassengers), h=5) ...
dolphingang's user avatar
0 votes
2 answers
68 views

I have been following the fpp3 textbook and using packages: fpp3, tidyverse. I have a Fable forecast, but would like to make manual modifications to the .mean. This is easily done by accessing those ...
dolphingang's user avatar
1 vote
2 answers
46 views

Following on from How attach actuals and forecast in a Line Chart, what I want to do now is to show the forecast but only for dates from today. This is the code: Forecast Engine = SUMX( DISTINCT('...
Francesco Mantovani's user avatar
0 votes
0 answers
48 views

I have a problem of 20 timeseries groups. I need to forecast them for a horizon of 180 days. I am having a context length of 365 days as I only have 4 years of data for them. I coded timeseriesdataset,...
PRData's user avatar
  • 31
0 votes
0 answers
51 views

I am working on a time series forecasting problem using the Darts library in Python. My goal is to forecast non-stationary time series data, specifically groundwater level data, using various models ...
CiaPy's user avatar
  • 25
2 votes
2 answers
117 views

I have failure data for tire removals that I have fitted to a weibull distribution, which has parameters beta = 1.09 and eta = 2750. Using the weibull parameters I would like to apply this to another ...
kelsey Kiser's user avatar
0 votes
0 answers
98 views

I have built a hybrid model that combines a Vector Autoregressive (VAR) model and a Long Short-Term Memory (LSTM) network. The VAR model is used to capture linear dependencies between macroeconomic ...
Thashikala Mendis's user avatar
0 votes
0 answers
49 views

I am trying to implement a forecasting model, and have followed this Medium guide. I have changed the code minimally, to get it working with the most recent version of skforecast (e.g. changing ...
Mara's user avatar
  • 1
0 votes
1 answer
62 views

What's the purpose of HORIZON in bqml CREATE_MODEL statement for ARIMA_PLUS? The resulting model doesn't have any forecast and I think CREATE_MODEL will fit the model based on all data points, without ...
djoVanCooper's user avatar
0 votes
1 answer
35 views

I have three inputs to my LSTM (x,y,z). My LSTM model is used to predict the next time step of z. I have a lookback period of 9 timesteps. I then need to forecast the next time steps of z using a ...
NGA's user avatar
  • 37
-1 votes
1 answer
260 views

Here is the code I have: # Define models models = { 'ExponentialSmoothing': [ ExponentialSmoothing(trend='add', seasonal='add', seasonal_periods=52), ExponentialSmoothing(trend='add', ...
GaB's user avatar
  • 1,134
0 votes
0 answers
27 views

I have the Sales billed data to a customer, where i want to develop a recommendation engine which will recommend the product purchased with minimum frequency of 8 times and the quantity of those ...
Maina's user avatar
  • 1
0 votes
0 answers
29 views

Seeking advice on how I could forecast the below better. Ultimately I am looking to build a 5-year rent growth forecast, but as part of the forecasting process, I will need other variables. Currently, ...
jmaval's user avatar
  • 313
0 votes
0 answers
41 views

I am busy with a forecasting model, and have turned to Transformers to see if they will be able to perform better than other sequence models. I keep getting the error: TypeError ...
Tayla Corney's user avatar
1 vote
0 answers
54 views

I want to forecast the series with trend and seasonal components using ARIMA model. But is that posible that I use the seasonally adjusted data for ARIMA model to gain the forecast data, then add the ...
Emma's user avatar
  • 11
2 votes
0 answers
127 views

Question: I'm working on a time series forecasting project using Prophet to predict foreign exchange (forex) rates, specifically USD to MXN. Since the forex market does not operate on weekends, I need ...
Jean-Luc Saint-Fleur's user avatar
1 vote
1 answer
398 views

I am trying to predict values from a lot of different devices (1000s, testing on a few hundred for performance reasons) on 15 min resolution. All of the devices log: name and value. I have tried ...
Vlad's user avatar
  • 11
0 votes
1 answer
64 views

I have transformed some data to make it stationary before fitting an ARIMA(1,0,1) model. I specifically want to manually transform the data to better understand the process. I can successfully fit a ...
gorilla's user avatar
  • 47
-1 votes
1 answer
131 views

I'm trying to forecast payments into the future and calculate the cost per month from the order date to need date and stop calculating the month of the need date. I'm tracking multiple orders under ...
coding7545685679's user avatar
0 votes
0 answers
148 views

Outline: I am using a vector autoregression (VAR) model from the statsmodel package https://www.statsmodels.org/stable/vector_ar.html#var. My two time-series, let us call them time-series 1) ts1 and 2)...
Philipp's user avatar
  • 415
0 votes
1 answer
374 views

I wanted to predict stock price in the next 60 days but after I finished writing the code, it predicted backward instead. Can anyone advise me? How can I do it? I revised my code but it's not working. ...
Spatdy's user avatar
  • 77
-1 votes
1 answer
55 views

i'm building an LSTM model to forecast future total number of cases for covid 19 using OWID dataset i use a multivariate series of 6 columns including the date column, the Problem is i get all zero ...
Muhamed Khaled's user avatar

1
2 3 4 5
46