forecasting Questions
3
Solved
I am trying to do out of sample forecasting using python statsmodels. I do not want to just forecast the next x number of values from the end of the training set but I want to forecast one value at...
Cinelli asked 11/11, 2015 at 23:25
9
I'm working on a multivariate (100+ variables) multi-step (t1 to t30) forecasting problem where the time series frequency is every 1 minute. The problem requires to forecast one of the 100+ variabl...
Lowestoft asked 5/2, 2019 at 22:54
2
Solved
I am running a time series forecast using forecast::auto.arima, and I was trying to see if there is a way to extract the values assigned to p, d, q (and seasonally as well if applicable) from the f...
Herring asked 24/6, 2016 at 16:17
10
Solved
I am trying to predict weekly sales using ARMA ARIMA models. I could not find a function for tuning the order(p,d,q) in statsmodels. Currently R has a function forecast::auto.arima() which will tun...
Airspeed asked 31/3, 2014 at 19:22
2
Solved
I am trying to predict a seasonal time series using SARIMAX. The time series consits of daily maximum values for PV-feed-in, which leads to the assumption of a 365 day periodicity.
Here is my code...
Unhandled asked 9/3, 2017 at 17:41
2
Solved
I have a Dataframe with around 80.000 observations taken every 15 min. The seasonal parameter m is assumed with 96, because every 24h the pattern repeats.
When I insert these informations in my aut...
Cousteau asked 8/7, 2020 at 9:7
2
Please see this example as the project I am working on is quite similar, but with ~8 regressors instead of 2 and I need to understand how each regressor is impacting the forecast model: https://tow...
Seldom asked 26/3, 2021 at 1:36
3
I have been using Prophet from Facebook and so far it has been produced some great results.
Having looked in the docs and googling, there doesn't seem to be an automatic way to extract the seasonal...
Gemsbok asked 28/11, 2017 at 14:56
3
using facebooks 'Prophet' package in R for forecasting. Was wondering if there is a way use it, such that it does not forecast negative values?
Thanks!
Churchly asked 19/8, 2017 at 9:14
1
I want to implement vector autoregression in python. My data is saved as a list of 3 lists. I found this -
http://statsmodels.sourceforge.net/stable/vector_ar.html#var, but could not figure out th...
Olivine asked 21/8, 2013 at 4:9
1
Solved
I am trying Forex prediction with Keras and Tensorflow using a LSTM Network.
I of course want it to train on many days of trading but to do that I would have to give it sequential data with big jum...
Carolyncarolyne asked 18/6, 2018 at 16:7
3
Solved
I have a .csv file containing a 5-year time series, with hourly resolution (commoditiy price). Based on the historical data, I want to create a forecast of the prices for the 6th year.
I have rea...
Assegai asked 2/8, 2016 at 14:53
1
I came across Joseph Owen code here for batch forecasting. I have a dataset containing close to ~19k rows but the issue is even with the batch forecasting methodology applied my code still runs sup...
Naseby asked 21/6, 2020 at 10:38
1
I'm trying to do hierarchical forecasting after the fashion of Rob Hyndman's Rstudio.conf workshop, and running into some problems. Here is my code:
library(dplyr)
library(tsibbledata)
library(tsi...
Gravitative asked 23/5, 2020 at 5:41
5
I recently updated R to 3.1.0. I tried to move my packages over to 3.1 inside the R.Framework (I'm running OSX Mavericks) and somehow made a mess of it, so did a complete uninstall of everything be...
Lachrymose asked 17/4, 2014 at 14:19
3
Solved
I have an already existing ARIMA (p,d,q) model fit to a time-series data (for ex, data[0:100]) using python. I would like to do forecasts (forecast[100:120]) with this model. However, given that I ...
Atalya asked 28/5, 2019 at 6:11
4
Solved
Good Evening,
I am trying to estimate the remaining time to the end of a loop; I've used:
start = datetime.now()
progress = 0
for i in range(1000):
#do a few calculations
progress += 1
st...
Epifaniaepifano asked 5/5, 2018 at 11:28
1
I want to forecast the number of customers entering a shop during service hours. I have hourly data for
Monday to Friday
8:00 to 18:00
Thus, I assume my time series is in fact regular, but atyp...
Quarterphase asked 9/3, 2020 at 9:24
2
Solved
I have signals recorded from machines (m1, m2, so on) for 28 days. (Note: each signal in each day is 360 length long).
machine_num, day1, day2, ..., day28
m1, [12, 10, 5, 6, ...], [78, 85, 32, 12,...
Centrosome asked 30/1, 2020 at 2:30
3
Solved
I am forecasting with forecast package.Below is results from my forecasting.
#CODE
library(forecast)
DATA_SET<-data.frame(TEST=c(200,220,200,260,300,290,320,340,360,500,200,300,400,250,350,39...
Malta asked 18/4, 2019 at 8:27
2
Solved
I tried forecasting with holt-winters model as shown below but I keep getting a prediction that is not consistent with what I expect. I also showed a visualization of the plot
Train = Airline[:130...
Gibber asked 10/6, 2018 at 15:54
1
Solved
I want to write a function that gets a time series and a standard deviation as parameters and returns an adjusted time series which looks like a forecast.
With this function I want to test a syste...
Tailpipe asked 21/5, 2019 at 13:15
1
I have a time series data with a frequency = 7 as follows:
combo_1_daily_mini <- read.table(header=TRUE, text="
region_1 region_2 region_3 date incidents
USA CA San Francisco 1/1/15 37
USA CA S...
Diffractometer asked 18/1, 2017 at 6:51
4
final String FORECAST_BASE_URL =
"http://api.openweathermap.org/data/2.5/forecast/daily?";
final String QUERY_PARAM = "q";
Hello.
I'm making a weather forecast app. But when I use "http://openwe...
Shreeves asked 11/1, 2015 at 3:51
1
Solved
I try to estimate Bass Curves to analyse diffusion of innovation for different groups. Until now I use nlsLM() of the minpack.lm package to estimate the parameter of the curve/to fit the curve. I l...
Drying asked 8/11, 2018 at 10:12
1 Next >
© 2022 - 2025 — McMap. All rights reserved.