# Declare a multiplicative seasonal ARIMA model for the birth data.
model = Sarima(birth,order = c(0,1,2),seasonal = c(1,1,1))
model
#Declare an Dynamic Harmonic Regression model for the birth data.
model = Sarima(birth,order = c(1,0,1),xreg = fourier(birth,K = 2))
model
Run the code above in your browser using DataLab