BaselCargo: Cargo handling at Basel harbours

Description Format Details Source Examples

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 2018(11).

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-01-25).

Examples

1
2
3
4
5
6
7
8
9
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)
}

CKdata documentation built on May 2, 2019, 4:51 p.m.

Related to BaselCargo in CKdata...