Lesson 22 of 27
Already have access? Sign in here
Already have access? Sign in here
Ask questions about this lesson and get instant answers.
We will now see how we can fit an MA model to a given time series using the arima() function in R. Recall that MA model is an ARIMA(0, 0, 1) model.
We can use the arima() function in R to fit the MA model by specifying order = c(0, 0, 1).