Tagged Questions

3
votes
1answer
1k views

Explaining the forecasts from an ARIMA model

I am trying to explain to myself the forecasting result from applying an ARIMA model to a time-series dataset. The data is from the M1-Competition, the series is MNB65. For quick reference, I have a ...
2
votes
1answer
73 views

Which R functions are useful for analysis of an investment strategy's profitability? [closed]

I have multiple variations of an automated strategy for trading certain investment vehicles. For each of these variations I have cross-validated backtests on historic data. I need to pick the ...
2
votes
1answer
106 views

Time series modelling with irregular data

I'm currently working on a pet project to forecast future base oil prices from historical base oil prices. The data is weekly but there are some periods in between where prices are missing. I'm ...
2
votes
2answers
108 views

Historical Weather Forecasts

I was wondering if anyone is aware of a free database of historical weather forecasts, available in a format that's easy to pull into R? I'm trying to get a table like this: Date Actual High ...
1
vote
1answer
280 views

Iteratively forecasting dyn models

I've written a function to iteratively forecast models built using the package dyn, and I'd like some feedback on it. Is there a better way to do this? Has someone written canonical "forecast" ...
1
vote
1answer
147 views

HoltWinters on Panel Data

I am trying to run the HoltWinters procedure on panel data to come up with sales forecasts for a list of companies. My data frame has the fields "Company", "Year" and "Sales". I am interested in ...
1
vote
1answer
2k views

R: ARIMA, ARMA and AICs?

data <-c(88, 84, 85, 85, 84, 85, 83, 85, 88, 89, 91, 99, 104, 112, 126, 138, 146,151, 150, 148, 147, 149, 143, 132, 131, 139, 147, 150, 148, 145, 140, 134, 131, 131, 129, 126, 126, 132, 137, 140, ...
0
votes
0answers
39 views

How to calling auto.Arima function of R in java and store the result of forecast?

I'm new to R in java. I use auto.Arima fuction of R in java to forecast my data for 12 periods. but the period of forecast result is ten period. How can I do for 12 periods of forecast ? I also want ...
0
votes
1answer
99 views

R Forecasting for highly seasonal revenue data

I have three years of daily revenue data. There is some fairly constant data growth per year, but the data is highly seasonal with huge peaks in Q4 (black friday, before Christmass frenzy, etc) and ...
0
votes
2answers
295 views

Panel Data Forecasting With R

I have data that is organized in panels like this (see below for output from the dput() function): Country Year Month Var1 Var2 C1 2000 1 0 0 C1 2000 2 1 0 C1 2000 3 ...
-2
votes
3answers
95 views

forecasting in R

l am trying to do the forecasting using R but everytime l download forecast package, it shows error that rcpp package isn't properly installed. As a result l am not able to run the forecast . Please ...