Forecasting involves estimating values (or distributions) that have not yet been observed.
-1
votes
0answers
36 views
Which is the best accuracy measuring criteria among rmse, mae & mape? [closed]
I have created training set and test set from my data. Then I performed auto.arima() and ets() in R on the training set to predict one-step ahead forecasts. These were then compared with the test set ...
0
votes
1answer
24 views
which is the best criteria for choosing between ets() and auto.arima() functions in R?
I am using ets() and auto.arima() functions from forecast package to predict future values in R. Which criteria should be used to choose the best model between these two?
Following is the accuracy ...
0
votes
1answer
34 views
Is there an easier way to extract combined fitted values and forecast values of an ARIMA in R?
Simple question -- I want to extract the fitted values and mean forecast of an ARIMA as one single time series, using R. Right now, I use this slow and cumbersome code:
x<-auto.arima(y)
...
0
votes
0answers
13 views
when to aggregate when time series forecasting
I have a some historical sales data for various product SKUs, including category information ("department" "category", "subcategory"). I want to use this to generate sales curve (a baseline forecast ...
0
votes
1answer
41 views
Does ETS smoothing model work for more than one year forecast in R?
I am currently using ets() to forecast future values based on historic time series data in R. I used forecast() function to predict next 24 data points. However, the output gives same numbers for the ...
0
votes
1answer
90 views
R Forecasting Package and Daily Timeseries
I have been using the Forecast Package in R but have found it difficult to load my own daily time series into a ts object and then use this with the forecasting algorithms. I have instead used zoo to ...
0
votes
0answers
23 views
Different Results of Optimal Combination of Forecasts in hts R package
Good day.
Why does forecast(Rev, h=5, method="comb", fmethod="ets") give a different result from combinef(FcstMat, Smatrix(Rev), return="matrix")? When I compute for optimal combination as described ...
0
votes
1answer
24 views
Datasets for Call Centre Timeseries Forecasting
Does anybody know of any open datasets that can be used for call centre analytics? Particularly I am interested in forecasting the number of incoming calls and also visualizing internal queues in ...
0
votes
1answer
29 views
How to specify newxreg in prediction model of ARIMA?
I have fit the model below to my time series data. The xreg consists of a time vector that goes from 1 through 1000 and of 12 indicator variables (1 or 0) that represent the month. The data that I'm ...
0
votes
0answers
48 views
Does anyone know of multivariate forecasting packages for are
I have been looking in the R-package libraries for a package that is capable of forecasting multivariate regression models. I have found that this can be done with ARIMA, but auto regressive models ...
0
votes
1answer
50 views
Using the combination forecast(auto.arima())
I recently updated to forecast() version 4.03 and the last line (line 4) of the example code below now gives an error message (as shown at the bottom). Notice that forecast() in line 4 is fed the ...
0
votes
1answer
83 views
TimeSeries Forecasting in Java
I'm trying to run TimeseriesExample code for forecasting(predicting) future 6-months data by giving 2-months data in Java. I need to use WekaForecaster object. But I'm unable to import these two ...
2
votes
2answers
75 views
weighted ARIMA in R or other software
I am using the forecast package in R to do time series forecasting. I have a history of 5 years and want to predict the next 3 months. I've noticed that if I only use the 2-3 most recent years in my ...
0
votes
1answer
72 views
How to use linear models to obtain coefficients by factors levels?
I'm analyzing data from a solar power plant. I wanted to adjust the estimated production plant Hourly each subsequent day, the data that can be obtained are the weather forecasts of the next three ...
0
votes
1answer
26 views
Share production files with colleagues securely
I am wanting to share some files, collaborate between friends, and work on projects together securely but I am unsure on what to use. I've debated on Drop Box but there is no way to reliably ...
0
votes
2answers
153 views
Forecasting multivariate data with Auto.arima
I am trying to forecasts sales of weekly data. The data consists of these variables week no, sales, avgprice/perunit , holiday(whether that week contains holiday or not) and promotion(if any ...
0
votes
1answer
57 views
plot(forecast(d.ts)) omit line
I'm using the forecast package.
Suppose d.ts is a time series. When I use plot(forecast(d.ts)) I get a (very nice) plot of my time series plus a forecasted line and a shaded area representing the ...
7
votes
1answer
135 views
Why does knitr show a warning using auto.arima?
It appears that running auto.arima from the forecast package in a knitr script always generates a warning - and I don't get this warning when I run it in normal R.
knitr Markdown Example Code:
...
0
votes
2answers
157 views
Forecasting using ARIMAX in R
I used to forecast sales of computers at a weekly level in SAS, based on broadly two parameters - Pricing and Marketing spends (vehicle level - hence several variables). This was easy in SAS as I ...
0
votes
1answer
307 views
auto.arima forecast with multivariate xreg - unexpected results
In my spare time I try to sharpen my skills a bit on forecasting techniques and today's issue focused on forecasting with multiple regressors. I have created a time series that is influenced by two ...
0
votes
1answer
100 views
How to compare two forecasted graph for two different time series in R?
Actually I want to compare the forecasted graph for two different time series data. I have data for 5 year for two different city of rain data which has been observed monthly. For that I have plotted ...
0
votes
1answer
291 views
Simulate ARMA process in matlab
I am trying to simulate a time series process using Matlab. For example, let's see the following example:
http://www.mathworks.com/help/econ/arima.print.html
When I run following code
model = ...
1
vote
2answers
298 views
Time series analysis with seasonality. Any such statistical/machine learning java library available? [closed]
I need a forecasting model that will use time series as well as seasonality. Example, to predict Feb 2013 data, I will use Jan 2013 data and Feb 2012 data.
I was trying to assess ...
1
vote
1answer
300 views
How to forecast in python using machine learning , from a given set of geographical data?
I was analyzing some geographical data and attempting to predict/forecast next occurrence of event with respect to time and it geographical position. The data was in following order (with sample data)
...
0
votes
0answers
13 views
Forecast Prevalence Rates for Counties by Year
I'm trying to forecast an estimated prevalence rate and am having trouble with the forecasting code. The data is prevalence rates by county and year (2000-2010). I want to make a two year prediction ...
0
votes
1answer
387 views
Time series prediction of daily data of a month using ARIMA
I am working with 30 days (monthly) per cycle and thus have approximately 2 cycles in my historical dataset.
R script is,
library(forecast)
value <- c(117.2 , 224.2 , 258.0 , 292.1 , 400.1 , ...
0
votes
2answers
546 views
Time series prediction using R
I have the following R code
library(forecast)
value <- c(1.2, 1.7, 1.6, 1.2, 1.6, 1.3, 1.5, 1.9, 5.4, 4.2, 5.5, 6, 5.6,
6.2, 6.8, 7.1, 7.1, 5.8, 0, 5.2, 4.6, 3.6, 3, 3.8, 3.1, 3.4,
2, 3.1, 3.2, ...
3
votes
1answer
52 views
Plyr for generating forecasts
as an exercise in learning plyr, I've tried to do a plyr version of a recent posting by Rob Hyndman:
library(forecast); library(plyr)
# Hyndman, R. J. (2013, Jan 7). Batch forecasting in R
# ...
1
vote
2answers
131 views
simulate.Arima function from the forecast package [closed]
I am using the package forecast for seasonal times series simulations and I have two questions :
1) I don't exactly get the meaning and the utility of the "future" option. It is set to TRUE by ...
0
votes
0answers
47 views
forecast number of donations
I am trying to forecast/predict the number of donations expected to be received at multiple locations across the country. I have and want to use the information I have. This information covers the ...
2
votes
1answer
120 views
Cross validate seasonal linear model
I'm trying to perform a CV on my linear model, which has seasonal dummy variables, so i can't take a random sample.
y = rnorm(120,0,3) + 20*sin(2*pi*(1:120)/12)
x = months(ISOdate(2012,1:12,1))
...
0
votes
1answer
244 views
CSV input to R Forecast with dates via R studio?
I have a very simple csv file I'm trying to experiment with different forecast methods on.
Year total UnemplRt
1 12/31/2013 NA 7.1
2 12/31/2012 39535 8.3
3 ...
0
votes
0answers
433 views
MATLAB - Cross-Validation with Neural Networks yielding worse results than a standard Neural Network
Summary: I am quite confident that my mistake is theory based. I am not sure if I am handling the response variable correctly when a) partitioning my response variable according to the partitioning ...
3
votes
2answers
315 views
MATLAB - Creating a matrix of lagged time step vectors (similar to padding?)
I have a 429x1 vector that represents a hydrological time series. I am looking to "lag" the time series by a time step and turn it into a matrix for input into the nftool for some ANN analysis. The ...
2
votes
1answer
358 views
Predicting standard errors of forecast
I'm a newbie to R, coming from the Stata world. I've just run a linear model (with approx 100 variables, each with 500 data points or so) like so:
RegModel.3 <- ...
0
votes
0answers
158 views
TIme series decomposition using R
I'm using R with the forecast package to build some time-series models.
Right now, i'm dealing with multiple-seasonality data, using the tbats function.
When a plot the fitted-model, i get a plot ...
2
votes
2answers
62 views
How to use ‘hts’ with multi-level hierarchies?
I am forecasting on a large set of time series (5,000+). I would like to do this with a hierarchical approach were I do the forecasting at a higher level and then allocate the forecast down to each ...
1
vote
1answer
323 views
how to decide the forecasting method from the ME, MAD, MSE, SDE?
how to decide the forecasting method from the ME, MAD, MSE, SDE?
for example, there is 4 methods that will be decide.
but, the value won't be always greater or smaller among the error of each other.
...
1
vote
0answers
92 views
Confidence interval for exponential smoothing forecast
I'm using exponential smoothing (Brown's method) for forecasting.
The forecast can be calculated for one or more steps (time intervals).
Is there any way to calculate confidence intervals for such ...
1
vote
2answers
150 views
How to create a forecasting model that takes working days per month in consideration?
I would like to create a forecasting model that is sensitive to the number of working days in a month. For example, this year (2012) Christmas is in the middle of a week and therefore the month of ...
0
votes
0answers
93 views
Error in simulate.Arima with Nonzero Differencing Term and External Regressor
When I try to simulate an Arima process with a unit root and external regressors, I get an error. Reproducible code below:
y <- ts(c(3,5,10,13,4,15,13,17,20,24,26,27))
dummy <- ...
0
votes
1answer
176 views
Future Simulation with External Regressions using simulate.Arima()
My question involves the simulate.Arima() function in the forecasting. I have an ARIMA function with seasonality, a nonzero degree of differencing, and external regressors (dummy variables for ...
0
votes
0answers
73 views
forecast volatility in R [closed]
I want to forecast volatility of daily stock return in R with a GARCH process, but i didn't find a linear way to do it. I only find specific topic.
Can you help me?
3
votes
1answer
209 views
Forecast Package from R in Python
I found forecast package from R the best solution for time series analysis and forecasting.
I want to use it in Python. Could I use rpy and after take the forecast package in Python?
0
votes
1answer
92 views
in R Forecasted values
I have few questions regarding the forecast time series model in R.
The forecast values which i got for this is::
Want to take these values: 40,60,67,80,87 as the percentage values.
So, How to ...
5
votes
2answers
364 views
packages for time series forecasting
Are there appropriate packages for timeseries (analysis and forecast) in python?
And what methods they include?
there are in R the forecast package with includes many functions. Is there any same ...
1
vote
1answer
260 views
What's the gaps for the forecast error metrics: MAPE and WMAPE?
I know that MAPE and WMAPE as a forecast error metrics, they have some benefits. But what's the gaps? Someone says:
For MAPE:
"Combinations with very small or zero volumes can cause large skew in ...
0
votes
0answers
590 views
volatility forecasting using GARCH
I have the log returns of closing prices and am trying to use GARCH(1,1) model to forecast volatility of these log returns. So, far I have the following code, but I get incorrect values for my ...
1
vote
1answer
118 views
Reuse ts models once build in R to updated data set (forecast package)
I am quite new to R programming but I cant find anything about my Problem...
I would like to do some forecasting in R with the forecasting package from high resolution data (halfhourly data).
I would ...
0
votes
1answer
85 views
How to add regressors[xreg/newxreg] to a hierarchical time series forecast method[forecast.hts]?
I'd like an example/method to incorporate regressors into forecast.hts. Below seems correct, but alas is not producing a forecast.
require(hts)
data(htseg2)
ri <- runif(14)
rix <- runif(16)
...

