Question
Recreate Figures 2.2 (page 34), A (page 36), B(page 36), and2.8 (page 39) using R. 1) Compare the graphs and comment on your results. this
Recreate Figures 2.2 (page 34), A (page 36), B(page 36), and2.8 (page 39) using R.
1) Compare the graphs and comment on your results.
this is my R code
```{r}
Dulles_2
Dulles_2
autoplot(Dulles_2, main = "Time Series Plot of Domestic Passengers at Dulles, 1963-2015")
```
```{r}
Diff_1
str(Diff_1)
autoplot(Diff_1, main = "Time Series Plot for the First Differences of the Dulles Passenger Series", xlab='Time', colour="blue")
```
```{r}
Growth_1
autoplot(Growth_1, main="Time Series Plot for the Growth Rate for the Dulles Passenger Series", xlab='Time', colour="blue")
```
```{r}
Log_Dulles
autoplot(Log_Dulles, main="The Log Transform",xlab='Time', colour="blue")
```
```{r}
Diff_Log
autoplot(Diff_Log, main = "Time series plot forfirst difference in logarithms", xlab='Time', colour="blue")
```
attached are my graphs , help[ me with question 1)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started