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

I've noticed that Facebook's Prophet function does a good job with forecasting. However, for my data, it never starts at the last value of y-predict. As you can see in the image, the last value of ...
Gustav Matsson's user avatar
0 votes
0 answers
30 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
0 votes
0 answers
48 views

I am currently trying to implement the Temporal Fusion Transformer using PyTorch. This paper (https://arxiv.org/pdf/1912.09363) is my reference. Currently I am stuck with the variable selection ...
Haifischbecken's user avatar
2 votes
1 answer
64 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
0 votes
0 answers
85 views

I have questions about using XGBoost for the Time Series Forecasting problem. According to these articles: Multi-step time series forecasting with XGBoost | Towards Data Science XGBoost for Multi-...
Coleman YU's user avatar
1 vote
1 answer
59 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
1 vote
0 answers
36 views

We are running AutoML Forecast on Databricks Runtime 15.4 ML LTS and 16.4 ML LTS, using a time series dataset with temporal covariates from the Feature Store (e.g. a corona_dummy feature). We use ...
ostae911's user avatar
0 votes
1 answer
68 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
1 answer
77 views

I am using the following code to forecast electricity price up to 180 days ahead: far2_xreg <- function(x, h, xreg, newxreg) { forecast(nnetar(x, xreg=xreg, p=7, size=5, repeats=5), xreg=newxreg, ...
Shwan's user avatar
  • 1
0 votes
2 answers
71 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
5 votes
1 answer
152 views

Problem I am running a LightGBMModel via Darts with some (future) covariates. I want to understand the relevance of the different (lagged) features. In particular, I would like to retrieve the feature ...
basejumping_turtle'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
1 answer
129 views

I have 2 problems with my forecast. My forecast is this: 2025 & Forecast = VAR CurrentMonth = MAX('Calendar'[Month Number]) -- Actual 2025 value VAR Actual2025 = CALCULATE( SUM(Forecast[...
Francesco Mantovani's user avatar
0 votes
0 answers
55 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
38 views

Question for Expert Forum: I am working on a Regime-Switching Monte Carlo Simulation for EURIBOR interest rates, where I Estimate separate ARIMA models for three identified regimes (Hiking, Cutting, ...
Ioannis Kapsokolis's user avatar
0 votes
0 answers
55 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
0 votes
0 answers
48 views

I am working on a project to forecast food sales for a corporate restaurant. Sales are heavily influenced by the number of guests per day, along with other factors like seasonality, weather conditions,...
Mashu's user avatar
  • 29
2 votes
2 answers
124 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
1 vote
1 answer
243 views

I want to forecast hourly temperature values using the fbprophet model. So far I have trained the model on just ds and y variable and it is giving me good results. But now I want to add extra ...
Imtiaz Nabi's user avatar
0 votes
0 answers
119 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
1 answer
45 views

I am using the following code to conduct a SVAR estimation: data_q = pd.DataFrame({'GDP': GDP, 'CPI': CPI_q, 'Interest_rate': Interest_rate_q, ...
Oriol's user avatar
  • 11
0 votes
0 answers
51 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
0 answers
36 views

I am working with the hts package in R - I have several groups of hierarchical forecasts which I need to reconcile. However, I am working with a non-standard forecasting model, so am unable to ...
user456583's user avatar
0 votes
1 answer
69 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
1 vote
0 answers
43 views

I am using the following code to conduct a SVAR estimation but it keeps crashing, always the same kind of error: len(A_guess) != n_masked_a: TypeError: object of type 'int' has no len(). CAN ANYONE ...
Oriol's user avatar
  • 11
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
  • 43
0 votes
0 answers
40 views

I'm working on fitting a Poisson Lee-Carter model to the Danish male population data for calendar years 1990–2010 and ages 20–90 in R. After fitting the model, I want to plot the predicted mortality ...
idlatva's user avatar
  • 29
-1 votes
1 answer
263 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,144
0 votes
1 answer
54 views

I am new to forecasting. I am trying to do a hierarchical forecast using the HTS package. I have created two hierarchies. And then I applied below: forecast_middle_out_lum_arima <- forecast(...
Umair Ahmed's user avatar
0 votes
0 answers
32 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
37 views

Review of the Time Series Prediction Code In this project, we aim to predict consumption values using a Long Short-Term Memory (LSTM) model based on historical data. Below is a breakdown of the ...
Ernesto Carlos Casals Cunill's user avatar
0 votes
0 answers
95 views

I am trying to create an ARIMA model to predict road traffic for a single node using the PEMS08 dataset preprocessed for ASTGCN. I used the statsmodels library together with the auto_arima function of ...
Vincenzo Pallini's user avatar
0 votes
1 answer
87 views

I am cleaning historical data for forecasting for exponential smoothing. I have data at the US county level (i.e., second-level administrative division), but there are a lot of zero values (due to low ...
Carl Peterson's user avatar
1 vote
0 answers
60 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
1 vote
0 answers
67 views

Goal: I want to train a SARIMAX (actually, an MA(1)-X) model on some training data (endog + exog) and then test it on new, test data. That is, once we have the coefficient for the error term in the MA ...
user20487324's user avatar
2 votes
0 answers
129 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
58 views

I have one data set consisting of a total of 16 data (quarterly data from 2012 to 2015) as sample data set. I want to predict the 15th data (3rd quarter of 2015) from the model learned with an arima ...
유준택's user avatar
1 vote
1 answer
402 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
152 views

I would like to know if there is a proper way to deal (decompose, model, etc.) with data restricted to one period of the year, like Summer-only data, or any such period, across years. And I guessed ...
Diego NabaJo's user avatar
0 votes
1 answer
69 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
2 votes
3 answers
1k views

I'm working with a large dataset (~10 million rows and 50 columns) in pandas and experiencing significant performance issues during data manipulation and analysis. The operations include filtering, ...
Olusoji's user avatar
  • 21
-1 votes
1 answer
138 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
98 views

I am working on a cash flow forecasting project using Python and the pmdarima library for SARIMA model predictions. I’m able to generate predictions for each column and print them, but when I try to ...
João Gabriel Ferraz Mosqueira's user avatar
0 votes
0 answers
154 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
1 vote
0 answers
80 views

I am new in ML .Net Forecasting. I am trying to build a simple application for Prediction. Time Series (step is 1 month, 1993-1995), Data = values incrementing with step 10 starting from 100. Then I ...
Nvm's user avatar
  • 11
0 votes
1 answer
380 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 vote
0 answers
54 views

I'd like help forecasting completion rate by start date. People start a programme, after they start, at any time they may finish the programme and when they do they will have a status of Completed or ...
Matt Drake's user avatar
-1 votes
1 answer
58 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 vote
0 answers
113 views

I'm trying to fit a SARIMA model for my time series, in order to find the best model I'm using autom_arima from pmdarima. The code is simply: stepwise_fit = pm.auto_arima(train_dataset['shift_hours'], ...
MicheleSanna's user avatar
0 votes
1 answer
157 views

I am able to use statsmodels.graphics.tsaplots.plot_acf to get a plot of the acf's for a specific list of lags, as the lags input accepts a list of values. I would like to have the raw data of the acf'...
Zonova's user avatar
  • 235

1
2 3 4 5
46