-
Notifications
You must be signed in to change notification settings - Fork 2
1 Home
Imagine an airline company that wants to decide on the airplane capacities of different routes for the next 12 months. The decision to make now is how many airplanes of each type, the company is going to contract in the fleet for the next year. The actual assignment of the airplanes to routes can be decided later on a monthly basis.
As a first step to optimizing the airplane capacity for the next 12 month, a linear time series model should be fitted to predict the passenger volume.
We can see that the variance of passengers number is increasing, so we can transform the time series using log transformation to make the process more stationary.
tsPassVol.log <- ts(datf$passVol.log, frequency = 12)
modARIMA <- auto.arima(tsPassVol.log)
Deterministic prediction can reflect the information about expectation. To use variance for prediction, scenario generation and reduction has to be used.