BaselCargo {CKdata}R Documentation

Cargo handling at Basel harbours

Description

Cargo handling (in tons) for the harbours along the river Rhine in the cantons Basel-Stadt and Basel-Land (harbours Kleinhueningen, St. Johann, Birsfelden and Muttenz-Au).

Format

A monthly univariate time series from 1926(1) to 2019(6).

Details

Some observations are missing before 1946(1).

Source

Bureau of Statistics of the Canton of Basel-Stadt, Basel, Switzerland:

http://www.statistik.bs.ch/zahlen/tabellen/11-verkehr-mobilitaet/rheinhaefen.html (accessed 2019-09-06).

Examples

data("BaselCargo")
BaselCargo <- window(BaselCargo, start = 1947)
plot(BaselCargo)

if(require(forecast)) {
 cargo_arima <- auto.arima(BaselCargo, ic = "bic", stepwise = FALSE)
 cargo_forecast <- forecast(cargo_arima, h = 12)
 plot(cargo_forecast)
}


[Package CKdata version 0.0-1 Index]