Time Value & ARIMA in R Flashcards
MBA 728
The process of differencing a time series is most effective in dealing with:
a.
Non-constant variance
b.
Constant mean
c.
Linear trends
d.
High autocorrelation
C
For a time series to be stationary, which of the following conditions must be met?
a.
The series must have a trend component.
b.
The series must show a seasonal pattern.
c.
The variance of the series must be constant over time.
d.
The mean of the series must be increasing over time.
C
In moving average models, ______________________________________ .
a.
current value of dependent variable depends linearly on the current noise terms of independent variables.
b.
current value of dependent variable depends linearly on the current and past values of independent variables.
c.
current value of dependent variable depends linearly on the past values of dependent variables and error term.
d.
current value of dependent variable depends linearly on the current and past values of error terms.
D
A white noise process will have
(i) A zero mean
(ii) A constant variance
(iii) Autocovariances that are constant
(iv) Autocovariances that are zero except at lag zero.
A.
(i), (ii), (iii), and (iv)
B.
(i), (ii) and (iv) only
C.
(i) and (iii) only
D.
(i), (ii), and (iii) only
B
Which function in R is used to check the frequency of a time series dataset?
a.
acf()
b.
ts.plot()
c.
diff()
d.
frequency()
D
In time series analysis, what is the primary purpose of the ‘Partial Autocorrelation Function (PACF)’?
a.
To measure the overall variance in the series
b.
To assess the direct relationship between an observation and its lag
c.
To identify seasonal patterns
d.
To predict future values in the series
B
Which of the following best describes a stationary time series?
a.
A series that exhibits clear seasonality and trends
b.
A series with a constant mean, variance, and autocovariance over time
c.
A series with increasing mean and variance over time
d.
A series with mean and variance dependent on time
B
Which of the following is not an example of a time series model?
a.
Moving Average
b.
Autoregressive Integrated Moving Average
c.
Autoregressive
d.
No Answer
D
The autocorrelation function (ACF) in time series analysis is used to:
a.
Identify the correlation structure of the data
b.
Predict future values
c.
Estimate mean and variance
d.
Transform non-stationary to stationary data
A
What is the primary purpose of differencing in time series analysis?
a.
To make the series stationary
b.
To remove the error terms from the model
c.
To introduce seasonality into the series
d.
To increase the mean of the series
A
Which of the following best describes an ARIMA model’s approach to non-stationarity?
a.
Applying autocorrelation to enhance non-stationarity.
b.
Ignoring non-stationarity as irrelevant.
c.
Using differencing to transform the series into a stationary one.
d.
Increasing the variance until stationarity is achieved.
C
What is a key characteristic of a time series that exhibits a trend?
a.
Periodic fluctuations
b.
Long-run evolution in variables
c.
Constant mean
d.
Constant variance
B
Which of the following is true for white noise?
a.
Mean is constant
b.
Variance = 0
c.
Zero autocovariance
d.
Zero autocorrelations except at lag zero
D
A stationary time series with a constant autocorrelation structure over time is described as:
a.
Strongly stationary
b.
Random walk
c.
Non-stationary
d.
Weakly stationary
D
What is indicated by a gradual decay in the ACF and a sharp cutoff in the PACF?
a.
An MA process is present.
b.
An AR process is present.
c.
The series is over-differenced.
d.
The series is non-stationary.
B
What does a lag 2 autocorrelation represent in time series analysis?
a.
Non-stationarity of the series
b.
Correlation between values one time period apart
c.
Independence of the series
d.
Correlation between values two time periods apart
D
What does a sharp cutoff in the PACF after lag ‘p’ indicate in an AR(p) process?
a.
The presence of a moving average component.
b.
The need for differencing.
c.
That the series is non-stationary.
d.
The order of the AR process.
D
In time series analysis, what is the primary purpose of applying a logarithmic transformation?
a.
To stabilize variance in a series with non-constant variance
b.
To reduce the impact of outliers
c.
To highlight the cyclical components
d.
To detect seasonality more effectively
A
If a time series exhibits a regularly repeating pattern of highs and lows, what is this called?
a.
Trend.
b.
Seasonality.
c.
Stationarity.
d.
White noise.
B
In time series analysis, what is indicated by a lag 1 autocorrelation?
Question 2Answer
a.
Correlation between values one time period apart
b.
Correlation between values two time periods apart
c.
Non-stationarity of the series
d.
Independence of the series
A
You have a process Yt. The first difference process follows a MA(2) model. What is the appropriate model for Yt ?
Question 3Answer
a.
ARIMA(0, 1, 2)
b.
AR(2)
c.
ARIMA(0, 2, 2)
d.
MA(3)
A
MA(2) = ARIMA (0,0,2)
Next Model Would be
ARIMA (0,1,2) b/c of the added differencing
What is the purpose of the ACF and PACF plots when fitting a time series model?
Question 4Answer
a.
To identify the order of AR or MA processes.
b.
To visualize the trend in the series.
c.
To check the normality of the residuals.
d.
To confirm the stationarity of the series.
A
Which of the following situations can be analyzed using time series methods?
- Predicting daily rainfall amounts for the upcoming season.
- Estimating the value of a car based on its mileage and age.
- Tracking the monthly change in consumer price index over several years.
Question 5Answer
A.
2 and 3
B.
1, 2, and 3
C.
Only 3
D.
1 and 3
D
Cannot be 2 b/c you are not tracking the cars value day by day. Time series is data linked to causes on a frequent, time series, basis.
What role does the logarithm transformation play in time series analysis?
Question 6Answer
a.
To stabilize non-constant variance
b.
To calculate autocorrelation
c.
To enhance seasonal patterns
d.
To increase the trend
A