Question: For a tsibble called Test , suppose you wish to build an ARIMA model for a monthly series, with data running from September 1 9

For a tsibble called Test, suppose you wish to build an ARIMA model for a monthly
series, with data running from September 1981 through April 2023. Note, there are 500
observations (T=500). The series in question is named z. You start with unit root tests
as follows:
Test%>%features(z,unitroot_ndiffs)
# A tibble: 1\times 1
ndiffs
1
Test%>%features(z,unitroot_nsdiffs)
# A tibble: 1\times 1
nsdiffs
0
a. The appropriate gg_tsdisplay for this series is obtained with which of the following
commands (no explanation required)?(5 pts)
Option #1: Test%>%gg_tsdisplay(z,plot_type=partial)
Option #2: Test%>%gg_tsdisplay(difference(z),plot_type=partial)
Option #3: Test%>%gg_tsdisplay(difference(z,12),plot_type=partial)
Option #4: Test%>%gg_tsdisplay(difference(difference(z,12)),plot_type=partial)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!