Parameter and Order Estimation Flashcards

1
Q

What derivation is the asusmption of normally distirbuted white noise important for?

A

Derivation of the logmlikelihood

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name two r functions for finding the MLEs of parameters

A

Arima and sarmina

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Describe the arima function

A

arima(x, order = c(p, d, q), include.mean = TRUE)

x: time series
order: (p, d, q) are the AR order, degree of differencing, and the MA order.
▸ include.mean: Should the ARMA model include a mean/intercept term? The default is TRUE for undifferenced
series, and it is ignored for models with differencing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What happens to a mean or intercept with differencing

A

It disappears

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What r function allows us to simulate a trajectory

A

arima.sim(n=…,list(ar=c(…),ma=c(…)),sd=…)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What funciton allows resutls to stay the same and not vary

A

Set.seed()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Explain difference in decay of an acf for s tstaionary vs non stationary series

A

Stationary series - decays exponentially to zero very quickly
Non stationary series will have a slow decay

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the log transformation typically used for

A

To stabilise the variance - variance is different at one set of times time than an other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the r function for the quantile used for a 95% confidence interval

A

qnorm(1-0.05/2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do we get the standard error for the parameter estimates?

A

Find the diagonal elements of a covariance matrix and square root them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do we get information on the order of a MA(q) process

A

The ACF of a MA(q) process can give us information on the order since it is zero for lags greater than q and non-zero for the lag q.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do we get information on the order of an AR(p) process

A

Similarly, the partial ACF (PACF) of an AR(p) process can give
us information on the order since it is zero for lags greater than p
and non-zero for the lag p.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do we identify the order of an ARMA model

A

Both ACF and PACF can be used to give us an idea about the
possible maximum orders to be considered for an ARMA model. We can then decide which p and q to use out of all possible combinations by assessing some criteria

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you test the significance of lags int he model?

A

Find the estimates for the parameter coefficients of each lag then find a 95% confidence interval for these estimates. If it includes zero those lags are non significant

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

In the AIC what is 2K term

A

Penalty function to select a parsimonious model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Define a parsimonious model

A

A parsimonious model is a model that accomplishes the desired level of explanation or prediction with as few predictor variables as possible.

17
Q

What does AIC stand for

A

Akaike Information Criterion

18
Q

What does BIC stand for

A

Bayesian Information Criterion (BIC)